rust-lang-nursery / lazy-static.rs

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

[Question]: Why does crate.io have newer versions than in this repository? #189

Closed dclong closed 3 years ago

dclong commented 3 years ago

Sorry that I'm very new to Rust. Are newer versions on crate.io just new builds based on the same source code of lazy-static?

eaon commented 3 years ago

It doesn't: https://github.com/rust-lang-nursery/lazy-static.rs/releases

1.1.1 is maintenance/bugfix release for an older version. See https://github.com/rust-lang-nursery/lazy-static.rs/pull/162

dclong commented 3 years ago

Thank you for the clarification!