File tree 3 files changed +5
-5
lines changed 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " env_logger"
3
- version = " 0.6.1 " # remember to update html_root_url
3
+ version = " 0.6.2 " # remember to update html_root_url
4
4
authors = [" The Rust Project Developers" ]
5
5
license = " MIT/Apache-2.0"
6
6
readme = " README.md"
@@ -38,4 +38,4 @@ name = "init-twice-retains-filter"
38
38
harness = false
39
39
40
40
[features ]
41
- default = [" termcolor" , " atty" , " humantime" , " regex" ]
41
+ default = [" termcolor" , " atty" , " humantime" , " regex" ]
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ It must be added along with `log` to the project dependencies:
16
16
``` toml
17
17
[dependencies ]
18
18
log = " 0.4.0"
19
- env_logger = " 0.6.1 "
19
+ env_logger = " 0.6.2 "
20
20
```
21
21
22
22
` 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.
@@ -54,7 +54,7 @@ Tests can use the `env_logger` crate to see log messages generated during that t
54
54
log = " 0.4.0"
55
55
56
56
[dev-dependencies ]
57
- env_logger = " 0.6.1 "
57
+ env_logger = " 0.6.2 "
58
58
```
59
59
60
60
``` rust
Original file line number Diff line number Diff line change 238
238
239
239
#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
240
240
html_favicon_url = "https://www.rust-lang.org/static/images/favicon.ico" ,
241
- html_root_url = "https://docs.rs/env_logger/0.6.1 " ) ]
241
+ html_root_url = "https://docs.rs/env_logger/0.6.2 " ) ]
242
242
#![ cfg_attr( test, deny( warnings) ) ]
243
243
244
244
// 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