1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14name = "arbitrary" 15version = "1.1.0" 16authors = [ 17 "The Rust-Fuzz Project Developers", 18 "Nick Fitzgerald <fitzgen@gmail.com>", 19 "Manish Goregaokar <manishsmail@gmail.com>", 20 "Simonas Kazlauskas <arbitrary@kazlauskas.me>", 21 "Brian L. Troutwine <brian@troutwine.us>", 22 "Corey Farwell <coreyf@rwell.org>", 23] 24description = "The trait for generating structured data from unstructured data" 25documentation = "https://docs.rs/arbitrary/" 26readme = "README.md" 27keywords = [ 28 "arbitrary", 29 "testing", 30] 31categories = ["development-tools::testing"] 32license = "MIT OR Apache-2.0" 33repository = "https://github.com/rust-fuzz/arbitrary/" 34 35[[example]] 36name = "derive_enum" 37required-features = ["derive"] 38 39[[test]] 40name = "derive" 41path = "./tests/derive.rs" 42required-features = ["derive"] 43 44[dependencies.derive_arbitrary] 45version = "1.0.0" 46optional = true 47 48[dev-dependencies] 49 50[features] 51derive = ["derive_arbitrary"] 52