File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " simplelog"
3
- version = " 0.12.1 "
3
+ version = " 0.12.2 "
4
4
edition = " 2018"
5
5
authors = [
" Drakulix <[email protected] >" ]
6
6
description = " A simple and easy-to-use logging facility for Rust's log crate"
@@ -25,7 +25,7 @@ local-offset = ["time/local-offset"]
25
25
26
26
[dependencies ]
27
27
log = { version = " 0.4.*" , features = [" std" ] }
28
- termcolor = { version = " 1.1.* " , optional = true }
28
+ termcolor = { version = " ^ 1.1" , optional = true }
29
29
paris = { version = " ~1.5" , optional = true }
30
30
ansi_term = { version = " 0.12" , optional = true }
31
31
time = { version = " 0.3.7" , features = [" formatting" , " macros" ] }
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ fn main() {
42
42
### Results in
43
43
```
44
44
$ cargo run --example usage
45
- Compiling simplelog v0.12.1 (file:///home/drakulix/Projects/simplelog)
45
+ Compiling simplelog v0.12.2 (file:///home/drakulix/Projects/simplelog)
46
46
Running `target/debug/examples/usage`
47
47
[ERROR] Bright red error
48
48
```
@@ -57,7 +57,7 @@ and my_rust_binary.log
57
57
Just add
58
58
```
59
59
[dependencies]
60
- simplelog = "^0.12.1 "
60
+ simplelog = "^0.12.2 "
61
61
```
62
62
to your ` Cargo.toml `
63
63
@@ -67,7 +67,7 @@ This crate can internally depend on a [paris](https://github.com/0x20F/paris) cr
67
67
To use this feature you need to set a _ paris_ feature, like this:
68
68
```
69
69
[dependencies]
70
- simplelog = { version = "^0.12.1 ", features = ["paris"] }
70
+ simplelog = { version = "^0.12.2 ", features = ["paris"] }
71
71
```
72
72
in your ` Cargo.toml `
73
73
You can’t perform that action at this time.
0 commit comments