2026-02-07 18:30:22 +00:00
|
|
|
[package]
|
|
|
|
|
name = "swactor-fuzz"
|
|
|
|
|
version = "0.0.0"
|
|
|
|
|
publish = false
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
|
|
[package.metadata]
|
|
|
|
|
cargo-fuzz = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
libfuzzer-sys = { version = "0.4", features = ["arbitrary-derive"] }
|
|
|
|
|
arbitrary = { version = "1", features = ["derive"] }
|
|
|
|
|
swactor = { path = "..", default-features = true }
|
2026-02-13 09:38:10 +00:00
|
|
|
swactor-std = { path = "../crates/std" }
|
2026-02-07 18:30:22 +00:00
|
|
|
|
|
|
|
|
# Prevent this from interfering with workspaces
|
|
|
|
|
[workspace]
|
|
|
|
|
members = ["."]
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "fuzz_runtime"
|
|
|
|
|
path = "fuzz_targets/fuzz_runtime.rs"
|
|
|
|
|
doc = false
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "fuzz_mt"
|
|
|
|
|
path = "fuzz_targets/fuzz_mt.rs"
|
|
|
|
|
doc = false
|