blob: 72285b926c984aa3594c579a5fa4ce7647efb2cc [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 Galenson577945a2021-06-21 13:24:06 -07009version = "0.4.2"
Ivan Lozanod4c94da2020-11-16 10:56:18 -050010
11[dependencies]
Joel Galensond1325ea2021-04-01 17:09:16 -070012arbitrary = "1"
Joel Galenson577945a2021-06-21 13:24:06 -070013once_cell = "1"
Ivan Lozanod4c94da2020-11-16 10:56:18 -050014
15[build-dependencies]
16cc = "1.0"
17
18[features]
19arbitrary-derive = ["arbitrary/derive"]
Joel Galensonb6e853d2021-05-19 15:49:46 -070020
21[workspace]
22members = [
23 "./example",
24 "./example_arbitrary",
25 "./example_mutator",
26]
27
28[dev-dependencies]
29flate2 = "1.0.20"
30rand = "0.8.3"