blob: adfe66dafe8d4349c708e5179184b55658b3e61b [file] [log] [blame]
Ivan Lozanod4c94da2020-11-16 10:56:18 -05001[package]
2authors = ["The rust-fuzz Project Developers"]
3description = "A wrapper around LLVM's libFuzzer runtime."
4edition = "2018"
5license = "MIT/Apache-2.0/NCSA"
6name = "libfuzzer-sys"
7readme = "./README.md"
8repository = "https://github.com/rust-fuzz/libfuzzer"
Joel Galensonb6e853d2021-05-19 15:49:46 -07009version = "0.4.1"
Ivan Lozanod4c94da2020-11-16 10:56:18 -050010
11[dependencies]
Joel Galensond1325ea2021-04-01 17:09:16 -070012arbitrary = "1"
Ivan Lozanod4c94da2020-11-16 10:56:18 -050013
14[build-dependencies]
15cc = "1.0"
16
17[features]
18arbitrary-derive = ["arbitrary/derive"]
Joel Galensonb6e853d2021-05-19 15:49:46 -070019
20[workspace]
21members = [
22 "./example",
23 "./example_arbitrary",
24 "./example_mutator",
25]
26
27[dev-dependencies]
28flate2 = "1.0.20"
29rand = "0.8.3"