blob: c635f7a7ab173c2d0402c9141e5d8b3fd0666b7a [file] [log] [blame]
Chih-Hung Hsiehd4a5e372019-10-25 17:57:19 -07001[package]
2name = "remain"
3version = "0.1.3" # 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 = "0.4"
17quote = "0.6"
18syn = { version = "0.15", features = ["full", "visit-mut"] }
19
20[dev-dependencies]
21select-rustc = "0.1"
22trybuild = "1.0"