1[package] 2name = "derive_arbitrary" 3version = "1.3.2" # Make sure it matches the version of the arbitrary crate itself (not including the patch version) 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 = "2021" 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/" 19rust-version = "1.63.0" 20 21[dependencies] 22proc-macro2 = "1.0" 23quote = "1.0" 24syn = { version = "2", features = ['derive', 'parsing'] } 25 26[lib] 27proc_macro = true 28