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