pict-rs-proxy/Cargo.toml
asonix a87c9ef510
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone/tag Build is passing
Add slash trim middleware
2022-06-06 17:25:05 -05:00

60 lines
1.5 KiB
TOML

[package]
name = "pict-rs-proxy"
description = "A simple web frontend for pict-rs"
version = "0.4.0-alpha.4"
authors = ["asonix <asonix@asonix.dog>"]
license = "AGPL-3.0"
readme = "README.md"
repository = "https://git.asonix.dog/asonix/pict-rs-proxy"
edition = "2021"
build = "src/build.rs"
[features]
default = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-rt = "2.6.0"
actix-web = { version = "4.0.0", default-features = false }
anyhow = "1.0"
awc = { version = "3.0.0", default-features = false }
clap = { version = "3.1.15", features = ["derive", "env"] }
console-subscriber = "0.1"
dotenv = "0.15.0"
mime = "0.3"
minify-html = "0.8.0"
once_cell = "1.4"
opentelemetry = { version = "0.17", features = ["rt-tokio"] }
opentelemetry-otlp = "0.10"
serde = { version = "1.0", features = ["derive"] }
serde_qs = { version = "0.9", features = ["actix4"] }
thiserror = "1.0"
tracing = "0.1"
tracing-error = "0.2"
tracing-futures = "0.2"
tracing-log = "0.1"
tracing-opentelemetry = "0.17"
tracing-subscriber = { version = "0.3", features = [
"ansi",
"env-filter",
"fmt",
] }
url = "2.1"
[dependencies.tracing-actix-web]
version = "0.5.0"
default-features = false
features = ["emit_event_on_error", "opentelemetry_0_17"]
[dependencies.tracing-awc]
version = "0.1.0"
default-features = false
features = ["emit_event_on_error", "opentelemetry_0_17"]
[build-dependencies]
anyhow = "1.0"
dotenv = "0.15.0"
ructe = { version = "0.14.0", features = ["sass", "mime03"] }