mirror of
https://github.com/outbackdingo/optimclaw.git
synced 2026-08-25 14:53:34 +00:00
Full rename of all identifiers, filenames, and references: ironclaw → optimclaw IronClaw → OptimClaw IRONCLAW → OPTIMCLAW ironclaw_common → optimclaw_common ironclaw_safety → optimclaw_safety Upstream: nearai/ironclaw
41 lines
709 B
TOML
41 lines
709 B
TOML
[package]
|
|
name = "optimclaw-safety-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
serde_json = "1"
|
|
|
|
[dependencies.optimclaw_safety]
|
|
path = ".."
|
|
|
|
[[bin]]
|
|
name = "fuzz_safety_sanitizer"
|
|
path = "fuzz_targets/fuzz_safety_sanitizer.rs"
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_safety_validator"
|
|
path = "fuzz_targets/fuzz_safety_validator.rs"
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_leak_detector"
|
|
path = "fuzz_targets/fuzz_leak_detector.rs"
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_config_env"
|
|
path = "fuzz_targets/fuzz_config_env.rs"
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_credential_detect"
|
|
path = "fuzz_targets/fuzz_credential_detect.rs"
|
|
doc = false
|