vuln-aggregator/Cargo.toml

33 lines
789 B
TOML
Raw Permalink Normal View History

2024-11-01 18:41:50 +03:00
[package]
name = "vuln-aggregator"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "vuln-aggregator"
[dependencies]
axum = { version = "0.7.7", features = ["macros"] }
config = { version = "0.14.1", features = ["yaml"] }
2024-11-01 18:41:50 +03:00
futures = "0.3.31"
once_cell = "1.20.2"
2024-11-01 18:41:50 +03:00
regex = "1.11.0"
reqwest = { version = "0.12.8", features = ["json"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.132"
tera = "1.20.0"
2024-11-01 18:41:50 +03:00
tokio = { version = "1.40.0", features = [
"macros",
"process",
"rt-multi-thread",
] }
tower = "0.5.1"
tower-http = { version = "0.6.1", features = ["trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
2024-11-06 15:02:59 +03:00
uuid = { version = "1.11.0", features = ["v4"] }