Files
charybdis/plugins/dependencytrack/Cargo.toml
T
Guillaume GRABÉ 3e2b361cf6
CI / Clippy (push) Failing after 5m27s
CI / Check (push) Failing after 6m36s
CI / Format (push) Failing after 51s
CI / Test (push) Failing after 6m41s
fix: remove openssl dependency
2026-06-08 21:24:35 +02:00

23 lines
511 B
TOML

[package]
name = "charybdis-dependencytrack-plugin"
version = "0.1.0"
edition = "2021"
[lib]
name = "charybdis_dependencytrack"
path = "src/lib.rs"
[dependencies]
charybdis = { path = "../.." }
anyhow = "1.0"
async-trait = "0.1"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
tokio = { version = "1.48", features = ["full"] }
tracing = "0.1"
[dev-dependencies]
tokio-test = "0.4"