blob: 3fc95b65ec9244a079b6275b7f4a2134860282d4 [file] [log] [blame]
Chih-Hung Hsiehde83b092020-04-07 14:24:01 -07001[package]
2name = "lazycell"
Haibo Huang6f3fa152020-08-11 23:25:13 -07003version = "1.3.0"
Chih-Hung Hsiehde83b092020-04-07 14:24:01 -07004authors = ["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 }
Haibo Huang6f3fa152020-08-11 23:25:13 -070023serde = { version = "^1", optional = true }
Chih-Hung Hsiehde83b092020-04-07 14:24:01 -070024
25[features]
26nightly = []
27nightly-testing = ["clippy", "nightly"]