pict-rs-proxy/Cargo.toml

52 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-12-30 17:06:40 +00:00
version = "0.3.0-alpha.18"
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]
actix-rt = "2.5.0"
actix-web = { version = "4.0.0-beta.15", default-features = false }
anyhow = "1.0"
awc = { version = "3.0.0-beta.14", default-features = false }
console-subscriber = "0.1"
2020-09-10 14:27:31 +00:00
dotenv = "0.15.0"
mime = "0.3"
minify-html = "0.8.0"
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"
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"
2021-10-25 01:48:19 +00:00
tracing-opentelemetry = "0.16"
tracing-subscriber = { version = "0.3", features = ["ansi", "env-filter", "fmt"] }
url = "2.1"
2021-09-19 18:21:23 +00:00
[dependencies.tracing-actix-web]
version = "0.5.0-beta.6"
2021-09-25 20:57:15 +00:00
default-features = false
2021-10-26 15:50:45 +00:00
features = ["emit_event_on_error", "opentelemetry_0_16"]
2021-09-19 18:21:23 +00:00
2021-09-25 20:57:15 +00:00
[dependencies.tracing-awc]
version = "0.1.0-beta.15"
2021-09-25 20:57:15 +00:00
default-features = false
2021-10-26 15:50:45 +00:00
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"] }