pict-rs-admin/Cargo.toml

46 lines
1.5 KiB
TOML
Raw Normal View History

2023-08-28 21:06:29 +00:00
[package]
name = "pict-rs-admin"
2023-08-29 00:19:22 +00:00
description = "An example pict-rs admin tool"
2024-02-02 00:47:32 +00:00
version = "0.2.0"
2023-08-29 00:19:22 +00:00
authors = ["asonix <asonix@asonix.dog>"]
license = "AGPL-3.0"
readme = "README.md"
repository = "https://git.asonix.dog/asonix/pict-rs-admin"
2023-08-28 21:06:29 +00:00
edition = "2021"
2023-08-29 00:19:22 +00:00
2023-08-28 23:46:13 +00:00
build = "src/build.rs"
2023-08-28 21:06:29 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2024-02-12 21:16:51 +00:00
[profile.release]
strip = true
2023-08-28 23:46:13 +00:00
[build-dependencies]
ructe = "0.17.0"
2023-08-28 21:06:29 +00:00
[dependencies]
actix-web = { version = "4.3.1", default-features = false, features = ["macros", "rustls-0_21"] }
2023-08-28 23:46:13 +00:00
clap = { version = "4.4.1", features = ["derive", "env"] }
2023-08-29 00:19:22 +00:00
color-eyre = "0.6.2"
2024-02-02 00:46:48 +00:00
console-subscriber = "0.2.0"
2024-02-02 00:39:45 +00:00
minify-html = "0.15.0"
2024-02-02 00:46:48 +00:00
opentelemetry = "0.21.0"
opentelemetry_sdk = { version = "0.21.0", features = ["rt-tokio"] }
opentelemetry-otlp = "0.14.0"
2023-08-28 23:46:13 +00:00
reqwest = { version = "0.11.20", default-features = false, features = ["json", "rustls-tls", "stream"] }
2023-08-29 00:19:22 +00:00
reqwest-middleware = "0.2.3"
2024-02-02 00:46:48 +00:00
reqwest-tracing = { version = "0.4.6", features = ["opentelemetry_0_21"] }
rustls_021 = { package = "rustls", version = "0.21" }
rustls = "0.22"
rustls-channel-resolver = "0.1.0"
rustls-pemfile = "2.0.0"
2023-08-28 23:46:13 +00:00
serde = { version = "1.0.188", features = ["derive"] }
2024-02-02 04:12:33 +00:00
tokio = { version = "1", features = ["fs"] }
2023-08-29 00:19:22 +00:00
tracing = "0.1.37"
2024-02-02 00:46:48 +00:00
tracing-actix-web = { version = "0.7.6", features = ["opentelemetry_0_21", "emit_event_on_error"] }
2023-08-29 00:19:22 +00:00
tracing-error = "0.2.0"
2024-02-02 00:46:48 +00:00
tracing-log = "0.2.0"
tracing-opentelemetry = "0.22.0"
2023-08-29 00:19:22 +00:00
tracing-subscriber = { version = "0.3.17", features = ["ansi", "env-filter", "fmt"] }
2023-08-28 23:46:13 +00:00
url = "2.4.1"