1[package] 2name = "remain" 3version = "0.2.2" # remember to update number in readme for major versions 4authors = ["David Tolnay <dtolnay@gmail.com>"] 5edition = "2018" 6license = "MIT OR Apache-2.0" 7description = "Compile-time checks that an enum, struct, or match is written in sorted order." 8repository = "https://github.com/dtolnay/remain" 9documentation = "https://docs.rs/remain" 10readme = "README.md" 11 12[lib] 13proc-macro = true 14 15[dependencies] 16proc-macro2 = "1.0" 17quote = "1.0" 18syn = { version = "1.0", features = ["full", "visit-mut"] } 19 20[dev-dependencies] 21rustversion = "1.0" 22trybuild = { version = "1.0.19", features = ["diff"] } 23 24[package.metadata.docs.rs] 25targets = ["x86_64-unknown-linux-gnu"] 26