pict-rs-proxy/Cargo.toml

51 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-10-21 16:20:30 +00:00
version = "0.3.0-alpha.12"
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"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-10-21 16:17:47 +00:00
actix-rt = "2.3.0"
actix-web = { version = "4.0.0-beta.10", default-features = false }
anyhow = "1.0"
2021-10-21 16:17:47 +00:00
awc = { version = "3.0.0-beta.9", 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-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]
2021-10-21 16:17:47 +00:00
version = "0.4.0-beta.15"
2021-09-25 20:57:15 +00:00
default-features = false
2021-09-19 18:21:23 +00:00
features = ["emit_event_on_error", "opentelemetry_0_16"]
2021-09-25 20:57:15 +00:00
[dependencies.tracing-awc]
2021-10-21 16:17:47 +00:00
version = "0.1.0-beta.6"
2021-09-25 20:57:15 +00:00
default-features = false
features = ["emit_event_on_error", "opentelemetry_0_16"]
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"
2020-12-01 17:57:19 +00:00
ructe = { version = "0.13.0", features = ["sass", "mime03"] }