Files
tduhamel42 40d48a8045 feat: Complete Temporal migration cleanup and fixes
- Remove obsolete docker_logs.py module and container diagnostics from SDK
- Fix security_assessment workflow metadata (vertical: rust -> python)
- Remove all Prefect references from documentation
- Add SDK exception handling test suite
- Clean up old test artifacts
2025-10-14 15:02:52 +02:00

36 lines
537 B
TOML

[package]
name = "rust_fuzz_test-fuzz"
version = "0.0.0"
publish = false
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
[dependencies.rust_fuzz_test]
path = ".."
[[bin]]
name = "fuzz_target_1"
path = "fuzz_targets/fuzz_target_1.rs"
test = false
doc = false
bench = false
[[bin]]
name = "fuzz_divide"
path = "fuzz_targets/fuzz_divide.rs"
test = false
doc = false
bench = false
[[bin]]
name = "fuzz_waterfall"
path = "fuzz_targets/fuzz_waterfall.rs"
test = false
doc = false
bench = false