Skip to content

Commit 0921ee7

Browse files
committed
update cargo
1 parent 0b7fabc commit 0921ee7

File tree

5 files changed

+90
-51
lines changed

5 files changed

+90
-51
lines changed

Diff for: Cargo.lock

+81-42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: adventofcode/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ edition = "2018"
66

77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88
[dependencies]
9-
serde_json = "1.0.60"
9+
serde_json = "1.0.132"
1010
rustgym-util = { path = "../util" }
11-
rayon = "1.5.0"
11+
rayon = "1.10.0"
1212
md5 = "0.7.0"
13-
paste = "1.0.3"
13+
paste = "1.0.15"

Diff for: leetcode/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ edition = "2018"
99
rustgym-util = { path = "../util" }
1010
rand = "0.7.3"
1111
assert_approx_eq = "1.1.0"
12-
paste = "1.0.3"
12+
paste = "1.0.15"
1313
pretty_assertions = "0.7.2"
1414
threadpool = "1.8.1"

Diff for: nes/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ edition = "2018"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77
[dependencies]
88
bitflags = "1.3.2"
9-
colored = "2.0.0"
9+
colored = "2.1.0"
1010
crc = "2.1.0"
11-
env_logger = "0.9.0"
12-
log = "0.4.14"
11+
env_logger = "0.11.5"
12+
log = "0.4.22"
1313
md5 = "0.7.0"
14-
rand = "0.8.4"
14+
rand = "0.8.5"

Diff for: nes/src/logger.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub fn logger_init() {
1010
writeln!(
1111
buf,
1212
"[{} {}:{}] - {}",
13-
buf.default_styled_level(record.level()),
13+
buf.default_level_style(record.level()),
1414
record.file().unwrap(),
1515
record.line().unwrap(),
1616
record.args()

0 commit comments

Comments
 (0)