| [package] |
| name = "derive_arbitrary" |
| version = "1.3.0" # Make sure it matches the version of the arbitrary crate itself (not including the patch version) |
| authors = [ |
| "The Rust-Fuzz Project Developers", |
| "Nick Fitzgerald <[email protected]>", |
| "Manish Goregaokar <[email protected]>", |
| "Andre Bogus <[email protected]>", |
| "Corey Farwell <[email protected]>", |
| ] |
| categories = ["development-tools::testing"] |
| edition = "2021" |
| keywords = ["arbitrary", "testing", "derive", "macro"] |
| readme = "README.md" |
| description = "Derives arbitrary traits" |
| license = "MIT/Apache-2.0" |
| repository = "https://github.com/rust-fuzz/arbitrary" |
| documentation = "https://docs.rs/arbitrary/" |
| rust-version = "1.63.0" |
| |
| [dependencies] |
| proc-macro2 = "1.0" |
| quote = "1.0" |
| syn = { version = "1.0.56", features = ['derive', 'parsing'] } |
| |
| [lib] |
| proc_macro = true |