aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: 8b16b07736f9e29d9796aa4686c12dd49abd6226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "remain"
version = "0.2.1" # 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

[badges]
travis-ci = { repository = "dtolnay/remain" }

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

[dev-dependencies]
rustversion = "1.0"
trybuild = { version = "1.0.19", features = ["diff"] }