aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: c635f7a7ab173c2d0402c9141e5d8b3fd0666b7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "remain"
version = "0.1.3" # remember to update number in readme for major versions
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Compile-time checks that an enum, struct, or match is written in sorted order."
repository = "https://github.com/dtolnay/remain"
documentation = "https://docs.rs/remain"
readme = "README.md"

[lib]
proc-macro = true

[dependencies]
proc-macro2 = "0.4"
quote = "0.6"
syn = { version = "0.15", features = ["full", "visit-mut"] }

[dev-dependencies]
select-rustc = "0.1"
trybuild = "1.0"