Skip to content

Commit a8737d9

Browse files
committed
Update to ostree-ext 0.15
Only one tiny change required thankfully for this one! This drops out duplicate versions of oci-spec from our lockfile too which is nice. Signed-off-by: Colin Walters <walters@verbum.org>
1 parent eea3996 commit a8737d9

File tree

3 files changed

+15
-31
lines changed

3 files changed

+15
-31
lines changed

Cargo.lock

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

lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ anstyle = "1.0.6"
1919
anyhow = { workspace = true }
2020
bootc-utils = { path = "../utils" }
2121
camino = { workspace = true, features = ["serde1"] }
22-
ostree-ext = { version = "0.14.0" }
22+
ostree-ext = { version = "0.15.0" }
2323
chrono = { workspace = true, features = ["serde"] }
2424
clap = { workspace = true, features = ["derive","cargo"] }
2525
clap_mangen = { version = "0.2.20", optional = true }

lib/src/deploy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ async fn handle_layer_progress_print(
178178
byte_bar.reset_eta();
179179
byte_bar.set_length(layer_size);
180180
let layer_type = prefix_of_progress(&l);
181-
let short_digest = &layer.digest()[0..21];
181+
let short_digest = &layer.digest().digest()[0..21];
182182
byte_bar.set_message(format!("{layer_type} {short_digest}"));
183183
} else {
184184
byte_bar.set_position(layer_size);

0 commit comments

Comments
 (0)