blob: acdd379ae030d66f17f973e33279c945d13c55d3 [file] [log] [blame]
Ivan Lozanoec882852020-11-24 12:25:56 -05001[package]
2name = "derive_arbitrary"
David LeGaree9c56602022-03-02 00:17:21 +00003version = "1.1.0" # Make sure it matches the version of the arbitrary crate itself.
Haibo Huangc16f8102021-02-09 16:57:13 -08004authors = [
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]
Ivan Lozanoec882852020-11-24 12:25:56 -050011categories = ["development-tools::testing"]
12edition = "2018"
13keywords = ["arbitrary", "testing", "derive", "macro"]
14readme = "README.md"
15description = "Derives arbitrary traits"
16license = "MIT/Apache-2.0"
Haibo Huangc16f8102021-02-09 16:57:13 -080017repository = "https://github.com/rust-fuzz/arbitrary"
Ivan Lozanoec882852020-11-24 12:25:56 -050018documentation = "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