26 lines
698 B
TOML
26 lines
698 B
TOML
[package]
|
|
name = "remain"
|
|
version = "0.2.2" # 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 = "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"] }
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|