1[package] 2name = "derive_arbitrary" 3version = "1.0.0" # Make sure it matches the version of the arbitrary crate itself. 4authors = [ 5 "The Rust-Fuzz Project Developers", 6 "Nick Fitzgerald <fitzgen@gmail.com>", 7 "Manish Goregaokar <manishsmail@gmail.com>", 8 "Andre Bogus <bogusandre@gmail.com>", 9 "Corey Farwell <coreyf@rwell.org>", 10] 11categories = ["development-tools::testing"] 12edition = "2018" 13keywords = ["arbitrary", "testing", "derive", "macro"] 14readme = "README.md" 15description = "Derives arbitrary traits" 16license = "MIT/Apache-2.0" 17repository = "https://github.com/rust-fuzz/arbitrary" 18documentation = "https://docs.rs/arbitrary/" 19 20[dependencies] 21proc-macro2 = "1.0" 22quote = "1.0" 23syn = { version = "1.0", features = ['derive'] } 24 25[lib] 26proc_macro = true 27