forked from rust-fuzz/honggfuzz-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (29 loc) · 1.01 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
[package]
name = "honggfuzz"
version = "0.5.22"
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" }
[dev-dependencies]
rand = "0.4"
[target.'cfg(fuzzing)'.dependencies]
lazy_static = "1.0"
[target.'cfg(fuzzing_debug)'.dependencies]
memmap = "0.6"