• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "remain"
3version = "0.2.6"
4authors = ["David Tolnay <dtolnay@gmail.com>"]
5categories = ["development-tools", "no-std"]
6description = "Compile-time checks that an enum, struct, or match is written in sorted order."
7documentation = "https://docs.rs/remain"
8edition = "2018"
9license = "MIT OR Apache-2.0"
10repository = "https://github.com/dtolnay/remain"
11rust-version = "1.31"
12
13[lib]
14proc-macro = true
15
16[dependencies]
17proc-macro2 = "1.0"
18quote = "1.0"
19syn = { version = "1.0", features = ["full", "visit-mut"] }
20
21[dev-dependencies]
22rustversion = "1.0"
23trybuild = { version = "1.0.49", features = ["diff"] }
24
25[package.metadata.docs.rs]
26targets = ["x86_64-unknown-linux-gnu"]
27