You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
[package]
|
|
name = "arbitrary"
|
|
version = "1.0.0" # Make sure this matches the derive crate version
|
|
authors = [
|
|
"The Rust-Fuzz Project Developers",
|
|
"Nick Fitzgerald <fitzgen@gmail.com>",
|
|
"Manish Goregaokar <manishsmail@gmail.com>",
|
|
"Simonas Kazlauskas <arbitrary@kazlauskas.me>",
|
|
"Brian L. Troutwine <brian@troutwine.us>",
|
|
"Corey Farwell <coreyf@rwell.org>",
|
|
]
|
|
categories = ["development-tools::testing"]
|
|
edition = "2018"
|
|
keywords = ["arbitrary", "testing"]
|
|
readme = "README.md"
|
|
description = "The trait for generating structured data from unstructured data"
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/rust-fuzz/arbitrary/"
|
|
documentation = "https://docs.rs/arbitrary/"
|
|
|
|
[dependencies]
|
|
derive_arbitrary = { version = "1.0.0", path = "./derive", optional = true }
|
|
|
|
[dev-dependencies]
|
|
|
|
[features]
|
|
# Turn this feature on to enable support for `#[derive(Arbitrary)]`.
|
|
derive = ["derive_arbitrary"]
|
|
|
|
[[example]]
|
|
name = "derive_enum"
|
|
required-features = ["derive"]
|
|
|
|
[[test]]
|
|
name = "derive"
|
|
path = "./tests/derive.rs"
|
|
required-features = ["derive"]
|
|
|
|
[workspace]
|