[package]
edition = "2018"
name = "flexpect"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "#[flexpect::e(...)] compiles to #[expect(...)] for newer versions of Rust and to #[allow(...)] when not supported."
homepage = "https://github.com/rusticstuff/flexpect"
readme = "README.md"
keywords = [
"expect",
"lint",
"macro",
"clippy",
"warnings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rusticstuff/flexpect"
[features]
invalidtests = []
submodtests = []
[lib]
name = "flexpect"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "invalid"
path = "tests/invalid.rs"
[[test]]
name = "simple"
path = "tests/simple.rs"
[[test]]
name = "submod"
path = "tests/submod.rs"
[dependencies.rustversion]
version = "1.0.17"