File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " lazy_static"
3
3
# NB: When modifying, also modify html_root_url in lib.rs
4
- version = " 1.2 .0"
4
+ version = " 1.3 .0"
5
5
authors = [
" Marvin Löbel <[email protected] >" ]
6
6
license = " MIT/Apache-2.0"
7
7
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Add the following dependency to your Cargo manifest...
31
31
32
32
``` toml
33
33
[dependencies ]
34
- lazy_static = " 1.2 .0"
34
+ lazy_static = " 1.3 .0"
35
35
```
36
36
37
37
...and see the [ docs] ( https://docs.rs/lazy_static ) for how to use it.
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ no guarantees can be made about them in regard to SemVer stability.
99
99
100
100
*/
101
101
102
- #![ doc( html_root_url = "https://docs.rs/lazy_static/1.2 .0" ) ]
102
+ #![ doc( html_root_url = "https://docs.rs/lazy_static/1.3 .0" ) ]
103
103
#![ no_std]
104
104
105
105
#[ cfg( not( feature = "spin_no_std" ) ) ]
@@ -195,7 +195,7 @@ pub trait LazyStatic {
195
195
/// extern crate lazy_static;
196
196
///
197
197
/// lazy_static! {
198
- /// static ref BUFFER: Vec<u8> = (0..65537 ).collect();
198
+ /// static ref BUFFER: Vec<u8> = (0..255 ).collect();
199
199
/// }
200
200
///
201
201
/// fn main() {
You can’t perform that action at this time.
0 commit comments