itoa/fuzz/Cargo.toml

23 lines
380 B
TOML
Raw Normal View History

2022-03-04 16:19:14 -05:00
[package]
name = "itoa-fuzz"
version = "0.0.0"
2022-07-31 22:25:46 -04:00
authors = ["David Tolnay <dtolnay@gmail.com>"]
2022-03-04 16:19:14 -05:00
edition = "2018"
2022-07-31 22:19:03 -04:00
publish = false
2022-03-04 16:19:14 -05:00
[package.metadata]
cargo-fuzz = true
[dependencies]
2022-05-15 16:42:01 -04:00
arbitrary = { version = "1", features = ["derive"] }
2022-05-15 16:41:03 -04:00
itoa = { path = ".." }
2022-05-15 16:42:01 -04:00
libfuzzer-sys = "0.4"
2022-03-04 16:19:14 -05:00
[[bin]]
name = "fuzz_itoa"
path = "fuzz_targets/fuzz_itoa.rs"
test = false
doc = false
2022-05-15 16:41:03 -04:00
[workspace]