-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
26 lines (23 loc) · 837 Bytes
/
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
[package]
name = "fuzztest"
version = "0.1.1"
authors = ["Paul Grandperrin <[email protected]>"]
license = "MIT/Apache-2.0/Unlicense/WTFPL"
repository = "https://github.com/PaulGrandperrin/fuzztest-rs"
documentation = "https://docs.rs/fuzztest"
homepage = "https://github.com/PaulGrandperrin/fuzztest-rs/blob/master/README.md"
readme = "README.md"
keywords = ["testing", "fuzz", "fuzzing", "property", "quickcheck"]
categories = ["development-tools::testing"]
description = """
Easily test your software using powerful evolutionary, feedback-driven fuzzing technology.
"""
[badges]
travis-ci = { repository = "PaulGrandperrin/fuzztest-rs", branch = "master" }
maintenance = { status = "experimental" }
[features]
default = ["nightly"]
nightly = ["lazy_static/nightly"]
[dependencies]
lazy_static = "1.0"
honggfuzz = "0.5.11"