-
Notifications
You must be signed in to change notification settings - Fork 42
/
Cargo.toml
44 lines (37 loc) · 1.19 KB
/
Cargo.toml
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]
name = "honggfuzz"
version = "0.5.56"
edition = "2021"
rust-version = "1.63"
authors = ["Paul Grandperrin <[email protected]>"]
license = "MIT/Apache-2.0/Unlicense/WTFPL"
repository = "https://github.com/rust-fuzz/honggfuzz-rs"
documentation = "https://docs.rs/honggfuzz"
homepage = "https://github.com/rust-fuzz/honggfuzz-rs/blob/master/README.md"
readme = "README.md"
keywords = ["fuzzer", "fuzzing", "testing", "security", "property"]
categories = ["command-line-utilities", "development-tools::testing", "development-tools::cargo-plugins", "development-tools::debugging"]
description = """
Fuzz your Rust code with Google-developped Honggfuzz !
"""
exclude = [
"/honggfuzz/examples/**",
"/honggfuzz/hfuzz_cc/**",
"/honggfuzz/**/*.png",
"/honggfuzz/includes/**",
]
[badges]
travis-ci = { repository = "rust-fuzz/honggfuzz-rs", branch = "master" }
maintenance = { status = "actively-developed" }
[features]
default = ["arbitrary"]
[dependencies]
arbitrary = { version = "1", optional = true }
rustc_version = "0.4"
[dev-dependencies]
rand = "0.8"
rand_chacha = "0.3"
[target.'cfg(fuzzing)'.dependencies]
lazy_static = "1.5"
[target.'cfg(fuzzing_debug)'.dependencies]
memmap2 = "0.9"