Files
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

25 lines
594 B
TOML

[package]
name = "charybdis-defectdojo-plugin"
version = "0.1.0"
edition = "2021"
[lib]
name = "charybdis_defectdojo"
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"
wiremock = "0.6"
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres"] }