libfuzzer-sys 0.4.12

A wrapper around LLVM's libFuzzer runtime.
Documentation
[package]
authors = ["The rust-fuzz Project Developers"]
description = "A wrapper around LLVM's libFuzzer runtime."
edition = "2018"
license = "(MIT OR Apache-2.0) AND NCSA"
name = "libfuzzer-sys"
readme = "./README.md"
repository = "https://github.com/rust-fuzz/libfuzzer"
version = "0.4.12"
exclude = [
    ".github",
    "ci",
    "libfuzzer/CMakeLists.txt", # no cmake used
    "libfuzzer/build.sh", # we use the cc crate for building
    "libfuzzer/scripts/unbalanced_allocs.py",
    "libfuzzer/standalone/StandaloneFuzzTargetMain.c", # that's the main function, we don't want it
    "libfuzzer/tests/CMakeLists.txt",
    "rust-toolchain", # downstream crates will ignore it anyway
    "update-libfuzzer.sh", # there is no need for downstream crates to execute this script
]

[dependencies]
arbitrary = "1"

[build-dependencies]
cc = { version = "1.0.83", features = ["parallel"] }

[features]
default = ["link_libfuzzer"]
link_libfuzzer = []
arbitrary-derive = ["arbitrary/derive"]

[workspace]
members = [
  "./example/fuzz",
  "./example_arbitrary/fuzz",
  "./example_crossover/fuzz",
  "./example_init/fuzz",
  "./example_mutator/fuzz",
]

[dev-dependencies]
flate2 = "1.1"
rand = { version = "0.10", default-features = false }