1[package] 2name = "remain" 3version = "0.2.12" 4authors = ["David Tolnay <dtolnay@gmail.com>"] 5categories = ["development-tools", "no-std", "no-std::no-alloc"] 6description = "Compile-time checks that an enum, struct, or match is written in sorted order." 7documentation = "https://docs.rs/remain" 8edition = "2021" 9license = "MIT OR Apache-2.0" 10repository = "https://github.com/dtolnay/remain" 11rust-version = "1.56" 12 13[lib] 14proc-macro = true 15 16[dependencies] 17proc-macro2 = "1.0.74" 18quote = "1.0.35" 19syn = { version = "2.0.46", features = ["full", "visit-mut"] } 20 21[dev-dependencies] 22rustversion = "1.0.13" 23trybuild = { version = "1.0.81", features = ["diff"] } 24 25[package.metadata.docs.rs] 26targets = ["x86_64-unknown-linux-gnu"] 27rustdoc-args = ["--generate-link-to-definition"] 28