• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..15-Mar-2021-

src/H15-Mar-2021-306134

tests/H15-Mar-2021-186142

.cargo-checksum.jsonH A D15-Mar-2021834 11

Cargo.tomlH A D15-Mar-20211.5 KiB4740

LICENSE-APACHEH A D15-Mar-202110.6 KiB202169

LICENSE-MITH A D15-Mar-20211 KiB2622

README.mdH A D15-Mar-20212.6 KiB8054

README.md

1lazy-static.rs
2==============
3
4A macro for declaring lazily evaluated statics in Rust.
5
6Using this macro, it is possible to have `static`s that require code to be
7executed at runtime in order to be initialized.
8This includes anything requiring heap allocations, like vectors or hash maps,
9as well as anything that requires non-const function calls to be computed.
10
11[![Travis-CI Status](https://travis-ci.com/rust-lang-nursery/lazy-static.rs.svg?branch=master)](https://travis-ci.com/rust-lang-nursery/lazy-static.rs)
12[![Latest version](https://img.shields.io/crates/v/lazy_static.svg)](https://crates.io/crates/lazy_static)
13[![Documentation](https://docs.rs/lazy_static/badge.svg)](https://docs.rs/lazy_static)
14[![License](https://img.shields.io/crates/l/lazy_static.svg)](https://github.com/rust-lang-nursery/lazy-static.rs#license)
15
16## Minimum supported `rustc`
17
18`1.27.2+`
19
20This version is explicitly tested in CI and may only be bumped in new minor versions. Any changes to the supported minimum version will be called out in the release notes.
21
22
23# Getting Started
24
25[lazy-static.rs is available on crates.io](https://crates.io/crates/lazy_static).
26It is recommended to look there for the newest released version, as well as links to the newest builds of the docs.
27
28At the point of the last update of this README, the latest published version could be used like this:
29
30Add the following dependency to your Cargo manifest...
31
32```toml
33[dependencies]
34lazy_static = "1.4.0"
35```
36
37...and see the [docs](https://docs.rs/lazy_static) for how to use it.
38
39# Example
40
41```rust
42#[macro_use]
43extern crate lazy_static;
44
45use std::collections::HashMap;
46
47lazy_static! {
48    static ref HASHMAP: HashMap<u32, &'static str> = {
49        let mut m = HashMap::new();
50        m.insert(0, "foo");
51        m.insert(1, "bar");
52        m.insert(2, "baz");
53        m
54    };
55}
56
57fn main() {
58    // First access to `HASHMAP` initializes it
59    println!("The entry for `0` is \"{}\".", HASHMAP.get(&0).unwrap());
60
61    // Any further access to `HASHMAP` just returns the computed value
62    println!("The entry for `1` is \"{}\".", HASHMAP.get(&1).unwrap());
63}
64```
65
66## License
67
68Licensed under either of
69
70 * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
71 * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
72
73at your option.
74
75### Contribution
76
77Unless you explicitly state otherwise, any contribution intentionally submitted
78for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any
79additional terms or conditions.
80