aerogramme/aero-dav/fuzz/Cargo.toml

25 lines
620 B
TOML
Raw Normal View History

2024-03-07 14:45:05 +00:00
[package]
name = "aerogramme-fuzz"
version = "0.0.0"
publish = false
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
2024-03-08 07:17:03 +00:00
arbitrary = { version = "1", optional = true, features = ["derive"] }
libfuzzer-sys = { version = "0.4", features = ["arbitrary-derive"] }
2024-03-07 14:45:05 +00:00
tokio = { version = "1.18", default-features = false, features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros", "sync", "signal", "fs"] }
quick-xml = { version = "0.31", features = ["async-tokio"] }
2024-03-08 07:17:03 +00:00
[dependencies.aero-dav]
2024-03-07 14:45:05 +00:00
path = ".."
[[bin]]
name = "dav"
path = "fuzz_targets/dav.rs"
test = false
doc = false
bench = false