mirror of
https://gitee.com/openharmony/third_party_rust_lazycell
synced 2024-11-23 15:40:34 +00:00
27 lines
678 B
TOML
27 lines
678 B
TOML
[package]
|
|
name = "lazycell"
|
|
version = "1.2.1"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>",
|
|
"Nikita Pekin <contact@nikitapek.in>"]
|
|
description = "A library providing a lazily filled Cell struct"
|
|
repository = "https://github.com/indiv0/lazycell"
|
|
documentation = "http://indiv0.github.io/lazycell/lazycell/"
|
|
readme = "README.md"
|
|
keywords = ["lazycell", "lazy", "cell", "library"]
|
|
license = "MIT/Apache-2.0"
|
|
include = [
|
|
"CHANGELOG.md",
|
|
"Cargo.toml",
|
|
"LICENSE-MIT",
|
|
"LICENSE-APACHE",
|
|
"README.md",
|
|
"src/**/*.rs",
|
|
]
|
|
|
|
[dependencies]
|
|
clippy = { version = "0.0", optional = true }
|
|
|
|
[features]
|
|
nightly = []
|
|
nightly-testing = ["clippy", "nightly"]
|