feat: open source vibecoding example project

This commit is contained in:
nobody 2025-09-28 11:20:25 -07:00
commit b370f462f2
Signed by: GrocerPublishAgent
GPG key ID: 43B1C298CDDE181C
34 changed files with 7744 additions and 0 deletions

38
fuzz/Cargo.toml Normal file
View file

@ -0,0 +1,38 @@
[package]
name = "json-archive-fuzz"
version = "0.0.0"
publish = false
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
arbitrary = { version = "1.0", features = ["derive"] }
tempfile = "3.0"
serde_json = "1.0"
[dependencies.json-archive]
path = ".."
[[bin]]
name = "fuzz_random_bytes"
path = "fuzz_targets/fuzz_random_bytes.rs"
test = false
doc = false
bench = false
[[bin]]
name = "fuzz_structured"
path = "fuzz_targets/fuzz_structured.rs"
test = false
doc = false
bench = false
[[bin]]
name = "fuzz_mutations"
path = "fuzz_targets/fuzz_mutations.rs"
test = false
doc = false
bench = false