pict-rs-proxy/Cargo.toml

64 lines
1.6 KiB
TOML
Raw Normal View History

[package]
name = "pict-rs-proxy"
2021-09-06 20:18:29 +00:00
description = "A simple web frontend for pict-rs"
2023-07-15 02:39:22 +00:00
version = "0.5.0-alpha.1"
authors = ["asonix <asonix@asonix.dog>"]
license = "AGPL-3.0"
readme = "README.md"
repository = "https://git.asonix.dog/asonix/pict-rs-proxy"
2021-10-21 21:41:06 +00:00
edition = "2021"
build = "src/build.rs"
2022-02-01 16:58:27 +00:00
[features]
2022-03-23 14:46:30 +00:00
default = []
2022-02-01 16:58:27 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-09-28 23:34:07 +00:00
actix-rt = "2.7.0"
2022-02-26 18:28:23 +00:00
actix-web = { version = "4.0.0", default-features = false }
anyhow = "1.0"
2024-02-01 22:32:17 +00:00
awc = { version = "3.0.0", default-features = false, features = ["rustls-0_21"] }
2022-09-28 23:34:07 +00:00
clap = { version = "4.0.2", features = ["derive", "env"] }
2022-03-23 14:46:30 +00:00
console-subscriber = "0.1"
2020-09-10 14:27:31 +00:00
dotenv = "0.15.0"
mime = "0.3"
minify-html = "0.15.0"
once_cell = "1.4"
2023-05-25 18:41:40 +00:00
opentelemetry = { version = "0.19", features = ["rt-tokio"] }
opentelemetry-otlp = "0.12"
2024-02-01 22:32:17 +00:00
rustls = "0.21"
rustls-pemfile = "2.0.0"
serde = { version = "1.0", features = ["derive"] }
2023-03-10 03:30:31 +00:00
serde_qs = { version = "0.12", features = ["actix4"] }
2020-06-14 16:16:12 +00:00
thiserror = "1.0"
2024-02-01 22:32:17 +00:00
tokio = { version = "1", features = ["fs"] }
2021-09-19 18:21:23 +00:00
tracing = "0.1"
2021-10-25 01:48:19 +00:00
tracing-error = "0.2"
2021-09-19 18:21:23 +00:00
tracing-futures = "0.2"
tracing-log = "0.1"
2023-05-25 18:41:40 +00:00
tracing-opentelemetry = "0.19"
2022-02-01 16:58:27 +00:00
tracing-subscriber = { version = "0.3", features = [
"ansi",
"env-filter",
"fmt",
] }
url = "2.1"
2024-02-01 22:32:17 +00:00
webpki-roots = "0.26"
2021-09-19 18:21:23 +00:00
[dependencies.tracing-actix-web]
2023-05-25 18:41:40 +00:00
version = "0.7.5"
2021-09-25 20:57:15 +00:00
default-features = false
2023-05-25 18:41:40 +00:00
features = ["emit_event_on_error", "opentelemetry_0_19"]
2021-09-19 18:21:23 +00:00
2021-09-25 20:57:15 +00:00
[dependencies.tracing-awc]
2023-05-25 18:41:40 +00:00
version = "0.1.7"
2021-09-25 20:57:15 +00:00
default-features = false
2023-05-25 18:41:40 +00:00
features = ["emit_event_on_error", "opentelemetry_0_19"]
2021-09-19 18:21:23 +00:00
[build-dependencies]
anyhow = "1.0"
2020-09-10 14:27:31 +00:00
dotenv = "0.15.0"
2023-03-10 03:30:31 +00:00
ructe = { version = "0.16.1", features = ["sass", "mime03"] }