-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (39 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
44 lines (39 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[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 }