pict-rs-proxy/Cargo.toml

49 lines
1.4 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"
2021-09-19 19:59:26 +00:00
version = "0.3.0-alpha.9"
authors = ["asonix <asonix@asonix.dog>"]
license = "AGPL-3.0"
readme = "README.md"
repository = "https://git.asonix.dog/asonix/pict-rs-proxy"
edition = "2018"
build = "src/build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-03-10 02:14:42 +00:00
actix-rt = "2.1.0"
2021-09-06 20:06:30 +00:00
actix-web = { version = "4.0.0-beta.8", default-features = false }
anyhow = "1.0"
2021-09-06 20:06:30 +00:00
awc = { version = "3.0.0-beta.7", default-features = false }
2020-09-10 14:27:31 +00:00
dotenv = "0.15.0"
mime = "0.3"
2021-08-31 21:37:04 +00:00
minify-html = "0.6.8"
once_cell = "1.4"
2021-09-19 18:21:23 +00:00
opentelemetry = { version = "0.16", features = ["rt-tokio"] }
opentelemetry-otlp = "0.9"
serde = { version = "1.0", features = ["derive"] }
structopt = "0.3.14"
2020-06-14 16:16:12 +00:00
thiserror = "1.0"
2021-09-19 18:21:23 +00:00
tracing = "0.1"
tracing-awc = { version = "0.1.0-beta.4", features = ["opentelemetry_0_16"] }
tracing-error = "0.1"
tracing-futures = "0.2"
tracing-log = "0.1"
tracing-opentelemetry = "0.15"
tracing-subscriber = { version = "0.2", features = ["ansi", "fmt"] }
url = "2.1"
2021-09-19 18:21:23 +00:00
[dependencies.tracing-actix-web]
version = "0.4.0-beta.12"
git = "https://github.com/asonix/tracing-actix-web"
branch = "asonix/tracing-error-work-around"
features = ["emit_event_on_error", "opentelemetry_0_16"]
[build-dependencies]
anyhow = "1.0"
2020-09-10 14:27:31 +00:00
dotenv = "0.15.0"
2020-12-01 17:57:19 +00:00
ructe = { version = "0.13.0", features = ["sass", "mime03"] }