mirror of
https://github.com/azalea-rs/simdnbt.git
synced 2025-08-02 15:36:03 +00:00
* write structs and unions for tape * war crimes * except they're not war crimes if you're winning * clippy and uncomment disabled examples * cleanup and fix ub * get(0) -> first() * add fuzzer and fix ub lmao * fix an out of bounds write * fix macros and make it more useable
19 lines
303 B
TOML
19 lines
303 B
TOML
[package]
|
|
name = "simdnbt-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
simdnbt = { path = "../simdnbt" }
|
|
|
|
[[bin]]
|
|
name = "fuzz_target_1"
|
|
path = "fuzz_targets/fuzz_target_1.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|