Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
imDema committed Jun 12, 2024
1 parent c863fdd commit 9b3a476
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 51 deletions.
90 changes: 45 additions & 45 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ derivative = "2.2.0"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
bincode = "1.3.3"
toml = "0.8.13"
toml = "0.8.14"

thiserror = "1.0.61"

Expand All @@ -51,7 +51,7 @@ once_cell = "1.19.0"
ssh2 = { version = "0.9.4", optional = true }
whoami = { version = "1.5.1", optional = true }
shell-escape = { version = "0.1.5", optional = true }
clap = { version = "4.5.4", features = ["derive"], optional = true }
clap = { version = "4.5.7", features = ["derive"], optional = true }
sha2 = { version = "0.10.8", optional = true }
base64 = { version = "0.22.1", optional = true }

Expand All @@ -67,7 +67,7 @@ lazy-init = "0.5.1"
# Faster monotonic clock using libc's CLOCK_MONOTONIC_COARSE
coarsetime = "0.1.34"

tokio = { version = "1.37.0", features = ["rt"], default-features = false, optional = true }
tokio = { version = "1.38.0", features = ["rt"], default-features = false, optional = true }
futures = { version = "0.3.30", optional = true }

parking_lot = "0.12.3"
Expand All @@ -91,12 +91,12 @@ criterion = { version = "0.5.1", features = ["html_reports"] }
fake = "2.9.2"
mimalloc = { version = "0.1.42", default-features = false }
tracing-subscriber = "0.3.18"
itertools = "0.12.1"
itertools = "0.13.0"

micrometer = { version = "0.2.7", features = ["enable"]}

# for the examples
regex = "1.10.4"
regex = "1.10.5"

kstring = { version = "2.0.0", features = ["serde"] }
nexmark = { version = "0.2.0", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/car_accidents.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ fn print_query3(
let groups = res
.iter()
.sorted_by_key(|(b, yw, _, _)| (b, yw))
.group_by(|(b, _, _, _)| b);
.chunk_by(|(b, _, _, _)| b);
for (borough, data) in groups.into_iter() {
print!("\n\x1b[1m{borough:<max_len$}\t");
let data = data.into_iter().collect_vec();
Expand Down

0 comments on commit 9b3a476

Please sign in to comment.