1[package] 2name = "lazycell" 3version = "1.3.0" 4authors = ["Alex Crichton <alex@alexcrichton.com>", 5 "Nikita Pekin <contact@nikitapek.in>"] 6description = "A library providing a lazily filled Cell struct" 7repository = "https://github.com/indiv0/lazycell" 8documentation = "http://indiv0.github.io/lazycell/lazycell/" 9readme = "README.md" 10keywords = ["lazycell", "lazy", "cell", "library"] 11license = "MIT/Apache-2.0" 12include = [ 13 "CHANGELOG.md", 14 "Cargo.toml", 15 "LICENSE-MIT", 16 "LICENSE-APACHE", 17 "README.md", 18 "src/**/*.rs", 19] 20 21[dependencies] 22clippy = { version = "0.0", optional = true } 23serde = { version = "^1", optional = true } 24 25[features] 26nightly = [] 27nightly-testing = ["clippy", "nightly"] 28