33 lines
789 B
TOML
33 lines
789 B
TOML
[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"] }
|
|
futures = "0.3.31"
|
|
once_cell = "1.20.2"
|
|
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"
|
|
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"] }
|
|
uuid = { version = "1.11.0", features = ["v4"] }
|