rust-lang-nursery / lazy-static.rs

A small macro for defining lazy evaluated static variables in Rust.
Apache License 2.0
1.91k stars 111 forks source link

please add minimum Rust version to CI #92

Closed BurntSushi closed 6 years ago

BurntSushi commented 6 years ago

I'd like to know what the minimum support Rust version if for lazy_static. I'm not necessarily asking for any particular policy with respect to semver, but just knowing that lazy_static works on Rust 1.x is incredibly useful information.

KodrAus commented 6 years ago

Looks like lazy_static works at least as far back as 1.11.0 before the compiler stopped working on my machine so I guess we just need to pick a version and include it in CI. 1.15.1? 1.20.0?

KodrAus commented 6 years ago

https://github.com/rust-lang-nursery/lazy-static.rs/commit/c0fbc23aa9924eba2c134745f0a353bb97c08d23 added 1.21.0 as the minimum supported version, so I think we can go ahead and close this one now.