1[package]
2name = "lazy_static"
3# NB: When modifying, also modify html_root_url in lib.rs
4version = "1.5.0"
5authors = ["Marvin Löbel <loebel.marvin@gmail.com>"]
6license = "MIT OR Apache-2.0"
7
8description = "A macro for declaring lazily evaluated statics in Rust."
9readme = "README.md"
10documentation = "https://docs.rs/lazy_static"
11
12repository = "https://github.com/rust-lang-nursery/lazy-static.rs"
13keywords = ["macro", "lazy", "static"]
14categories = [ "no-std", "rust-patterns", "memory-management" ]
15exclude = [".github"]
16
17[dependencies.spin]
18version = "0.9.8"
19default-features = false
20features = ["once"]
21optional = true
22
23[features]
24spin_no_std = ["spin"]
25
26[dev-dependencies]
27doc-comment = "0.3.1"
28trybuild = "1"
29