[package]
name = "scanbridge"
version = "0.3.0"
edition = "2021"
rust-version = "1.70"
authors = ["Scanbridge Contributors"]
description = "A unified, pluggable API for malware scanning with circuit breakers, policy enforcement, and audit logging"
license = "MIT"
repository = "https://github.com/dotdon/scanbridge"
homepage = "https://github.com/dotdon/scanbridge"
documentation = "https://docs.rs/scanbridge"
keywords = ["malware", "antivirus", "scanning", "security", "clamav"]
categories = ["api-bindings", "asynchronous"]
readme = "README.md"
exclude = ["target/", ".git/", ".github/"]
[features]
default = ["tokio-runtime"]
tokio-runtime = ["tokio"]
clamav = []
virustotal = ["reqwest"]
[dependencies]
async-trait = "0.1"
thiserror = "2"
tracing = "0.1"
blake3 = "1"
sha2 = { version = "0.10", optional = true }
md-5 = { version = "0.10", optional = true }
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["io-util", "sync", "time", "fs", "rt"], optional = true }
secrecy = { version = "0.10", features = ["serde"] }
reqwest = { version = "0.12", features = ["json"], optional = true }
uuid = { version = "1", features = ["v4", "serde"] }
pin-project-lite = "0.2"
futures = "0.3"
[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }
tracing-subscriber = { version = "0.3", features = ["json"] }
tempfile = "3"