Skip to content

Commit 3e63596

Browse files
authored
Merge pull request #1503 from cgwalters/bump-composefs-rs
Bump composefs-fs
2 parents 8ed1134 + 1d194cd commit 3e63596

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ cap-std-ext = "4.0.3"
3939
chrono = { version = "0.4.38", default-features = false }
4040
clap = "4.5.4"
4141
clap_mangen = { version = "0.2.20" }
42-
composefs = { git = "https://github.com/containers/composefs-rs", rev = "28d4721f77f973f0e394d60d6a69d9b39cb38d7f", package = "composefs", features = ["rhel9"] }
43-
composefs-boot = { git = "https://github.com/containers/composefs-rs", rev = "28d4721f77f973f0e394d60d6a69d9b39cb38d7f", package = "composefs-boot" }
44-
composefs-oci = { git = "https://github.com/containers/composefs-rs", rev = "28d4721f77f973f0e394d60d6a69d9b39cb38d7f", package = "composefs-oci" }
42+
composefs = { git = "https://github.com/containers/composefs-rs", rev = "8d1e570275621531d39b8f01681584bcc85ce01c", package = "composefs", features = ["rhel9"] }
43+
composefs-boot = { git = "https://github.com/containers/composefs-rs", rev = "8d1e570275621531d39b8f01681584bcc85ce01c", package = "composefs-boot" }
44+
composefs-oci = { git = "https://github.com/containers/composefs-rs", rev = "8d1e570275621531d39b8f01681584bcc85ce01c", package = "composefs-oci" }
4545
fn-error-context = "0.2.1"
4646
hex = "0.4.3"
4747
indicatif = "0.18.0"

crates/lib/src/cfsctl.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,8 @@ where
245245
println!("{}", image_id.to_id());
246246
}
247247
OciCommand::Pull { ref image, name } => {
248-
let (sha256, verity) = composefs_oci::pull(&repo, image, name.as_deref()).await?;
248+
let (sha256, verity) =
249+
composefs_oci::pull(&repo, image, name.as_deref(), None).await?;
249250

250251
println!("sha256 {}", hex::encode(sha256));
251252
println!("verity {}", verity.to_hex());

0 commit comments

Comments
 (0)