Skip to content

Instantly share code, notes, and snippets.

@adetaylor
Created March 4, 2022 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adetaylor/b0e5f5f8e5fc66d7d22391fe5b478f6a to your computer and use it in GitHub Desktop.
Save adetaylor/b0e5f5f8e5fc66d7d22391fe5b478f6a to your computer and use it in GitHub Desktop.
itoa_fuzz Cargo.toml
[package]
name = "itoa-fuzz"
version = "0.0.0"
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = { version="0.4", features=["arbitrary-derive"] }
[dependencies.itoa]
path = ".."
[workspace]
members = ["."]
[[bin]]
name = "fuzz_itoa"
path = "fuzz_targets/fuzz_itoa.rs"
test = false
doc = false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment