Go to file
Adam Perry 28cc0701ba Automatically use the allocation-free API for Rust 1.27.0+.
1.27.0 stabilized hint::unreachable, allowing the previously
nightly-only API to be used on stable.

The version detection can still be overridden using `cfg`s
(or their related environment variables through cargo), and both
the nightly and spin_no_std features are preserved for compatibility.
2018-07-08 13:55:15 -07:00
compiletest update unsized error msg pattern 2018-06-28 11:37:20 +10:00
src Automatically use the allocation-free API for Rust 1.27.0+. 2018-07-08 13:55:15 -07:00
tests Automatically use the allocation-free API for Rust 1.27.0+. 2018-07-08 13:55:15 -07:00
.gitignore Added metadata 2014-12-21 17:59:45 +01:00
.travis.yml Automatically use the allocation-free API for Rust 1.27.0+. 2018-07-08 13:55:15 -07:00
appveyor.yml fix up compile tests 2018-05-29 08:19:51 +10:00
build.rs Automatically use the allocation-free API for Rust 1.27.0+. 2018-07-08 13:55:15 -07:00
Cargo.toml Automatically use the allocation-free API for Rust 1.27.0+. 2018-07-08 13:55:15 -07:00
LICENSE-APACHE Dual license under both MIT and APACHE-2.0 2017-04-12 11:54:02 +02:00
LICENSE-MIT Dual license under both MIT and APACHE-2.0 2017-04-12 11:54:02 +02:00
README.md add badges 2018-07-01 12:23:13 -07:00

lazy-static.rs

A macro for declaring lazily evaluated statics in Rust.

Using this macro, it is possible to have statics that require code to be executed at runtime in order to be initialized. This includes anything requiring heap allocations, like vectors or hash maps, as well as anything that requires non-const function calls to be computed.

Travis-CI Status Latest version Documentation License

Getting Started

lazy-static.rs is available on crates.io. It is recommended to look there for the newest released version, as well as links to the newest builds of the docs.

At the point of the last update of this README, the latest published version could be used like this:

Add the following dependency to your Cargo manifest...

[dependencies]
lazy_static = "1.0"

...and see the docs for how to use it.

Example

#[macro_use]
extern crate lazy_static;

use std::collections::HashMap;

lazy_static! {
    static ref HASHMAP: HashMap<u32, &'static str> = {
        let mut m = HashMap::new();
        m.insert(0, "foo");
        m.insert(1, "bar");
        m.insert(2, "baz");
        m
    };
}

fn main() {
    // First access to `HASHMAP` initializes it
    println!("The entry for `0` is \"{}\".", HASHMAP.get(&0).unwrap());

    // Any further access to `HASHMAP` just returns the computed value
    println!("The entry for `1` is \"{}\".", HASHMAP.get(&1).unwrap());
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.