Files
rua-list/Cargo.toml
2023-05-04 14:26:03 +08:00

30 lines
783 B
TOML

[package]
name = "rua-list"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.17"
tokio = { version = "1.27.0", features = ["full"] }
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
clap = { version = "4.2.1", features = ["derive"] }
thiserror = "1.0.40"
anyhow = "1.0.70"
axum = "0.6.15"
reqwest = "0.11.16"
wildmatch = "2.1.1"
tower = { version = "0.4.13", features = ["full"] }
async-trait = "0.1.68"
futures-util = "0.3.28"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
tracing-appender = "0.2.2"
tracing-error = "0.2.0"
color-eyre = "0.6.2"
[target.'cfg(unix)'.dependencies]
openssl = { version = "=0.10.52", features = ["vendored"] }