Skip to content

Commit 12e5cbf

Browse files
committed
build: bump cargo dependencies
1 parent 5600bb1 commit 12e5cbf

File tree

3 files changed

+37
-35
lines changed

3 files changed

+37
-35
lines changed

Cargo.lock

Lines changed: 32 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ chrono = "0.4.42"
3131
clap.workspace = true
3232
clap-verbosity-flag = { default-features = false, features = [ "tracing" ], version = "3.0.4" }
3333
color-eyre = { default-features = false, features = [ "track-caller" ], version = "0.6.5" }
34-
dix = "1.3.0"
34+
dix = "1.4.2"
3535
elasticsearch-dsl = "0.4.24"
3636
hotpath = { optional = true, version = "0.9.3" }
3737
humantime = "2.3.0"

src/util.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -497,10 +497,12 @@ pub fn print_dix_diff(
497497
let closure_size_handle = dix::spawn_size_diff(
498498
old_generation.to_path_buf(),
499499
new_generation.to_path_buf(),
500+
true,
500501
);
501502

502-
let wrote = dix::write_package_diff(&mut out, old_generation, new_generation)
503-
.unwrap_or_default();
503+
let wrote =
504+
dix::write_package_diff(&mut out, old_generation, new_generation, true)
505+
.unwrap_or_default();
504506

505507
if let Ok((size_old, size_new)) =
506508
closure_size_handle.join().map_err(|_| {

0 commit comments

Comments
 (0)