• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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"
14rust-version = "1.63.0"
15name = "arbitrary"
16version = "1.2.3"
17authors = [
18    "The Rust-Fuzz Project Developers",
19    "Nick Fitzgerald <fitzgen@gmail.com>",
20    "Manish Goregaokar <manishsmail@gmail.com>",
21    "Simonas Kazlauskas <arbitrary@kazlauskas.me>",
22    "Brian L. Troutwine <brian@troutwine.us>",
23    "Corey Farwell <coreyf@rwell.org>",
24]
25description = "The trait for generating structured data from unstructured data"
26documentation = "https://docs.rs/arbitrary/"
27readme = "README.md"
28keywords = [
29    "arbitrary",
30    "testing",
31]
32categories = ["development-tools::testing"]
33license = "MIT OR Apache-2.0"
34repository = "https://github.com/rust-fuzz/arbitrary/"
35
36[[example]]
37name = "derive_enum"
38required-features = ["derive"]
39
40[[test]]
41name = "derive"
42path = "./tests/derive.rs"
43required-features = ["derive"]
44
45[dependencies.derive_arbitrary]
46version = "1.2.3"
47optional = true
48
49[features]
50derive = ["derive_arbitrary"]
51