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 = " env_logger"
3
3
edition = " 2018"
4
- version = " 0.8.1 " # remember to update html_root_url
4
+ version = " 0.8.2 " # remember to update html_root_url
5
5
authors = [" The Rust Project Developers" ]
6
6
license = " MIT/Apache-2.0"
7
7
readme = " README.md"
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ It must be added along with `log` to the project dependencies:
22
22
``` toml
23
23
[dependencies ]
24
24
log = " 0.4.0"
25
- env_logger = " 0.8.1 "
25
+ env_logger = " 0.8.2 "
26
26
```
27
27
28
28
` env_logger ` must be initialized as early as possible in the project. After it's initialized, you can use the ` log ` macros to do actual logging.
@@ -59,7 +59,7 @@ Tests can use the `env_logger` crate to see log messages generated during that t
59
59
log = " 0.4.0"
60
60
61
61
[dev-dependencies ]
62
- env_logger = " 0.8.1 "
62
+ env_logger = " 0.8.2 "
63
63
```
64
64
65
65
``` rust
Original file line number Diff line number Diff line change 232
232
#![ doc(
233
233
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
234
234
html_favicon_url = "https://www.rust-lang.org/static/images/favicon.ico" ,
235
- html_root_url = "https://docs.rs/env_logger/0.8.1 "
235
+ html_root_url = "https://docs.rs/env_logger/0.8.2 "
236
236
) ]
237
237
#![ cfg_attr( test, deny( warnings) ) ]
238
238
// When compiled for the rustc compiler itself we want to make sure that this is
You can’t perform that action at this time.
0 commit comments