Skip to content

Commit

Permalink
update cargo
Browse files Browse the repository at this point in the history
  • Loading branch information
warycat committed Nov 13, 2024
1 parent 0b7fabc commit 0921ee7
Show file tree
Hide file tree
Showing 5 changed files with 90 additions and 51 deletions.
123 changes: 81 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions adventofcode/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0.60"
serde_json = "1.0.132"
rustgym-util = { path = "../util" }
rayon = "1.5.0"
rayon = "1.10.0"
md5 = "0.7.0"
paste = "1.0.3"
paste = "1.0.15"
2 changes: 1 addition & 1 deletion leetcode/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ edition = "2018"
rustgym-util = { path = "../util" }
rand = "0.7.3"
assert_approx_eq = "1.1.0"
paste = "1.0.3"
paste = "1.0.15"
pretty_assertions = "0.7.2"
threadpool = "1.8.1"
8 changes: 4 additions & 4 deletions nes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitflags = "1.3.2"
colored = "2.0.0"
colored = "2.1.0"
crc = "2.1.0"
env_logger = "0.9.0"
log = "0.4.14"
env_logger = "0.11.5"
log = "0.4.22"
md5 = "0.7.0"
rand = "0.8.4"
rand = "0.8.5"
2 changes: 1 addition & 1 deletion nes/src/logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub fn logger_init() {
writeln!(
buf,
"[{} {}:{}] - {}",
buf.default_styled_level(record.level()),
buf.default_level_style(record.level()),
record.file().unwrap(),
record.line().unwrap(),
record.args()
Expand Down

0 comments on commit 0921ee7

Please sign in to comment.