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