Skip to content

Commit 74facc8

Browse files
Bump composefs-fs
Signed-off-by: Johan-Liebert1 <[email protected]>
1 parent 723bf96 commit 74facc8

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
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
@@ -36,9 +36,9 @@ anyhow = "1.0.82"
3636
camino = "1.1.6"
3737
canon-json = "0.2.1"
3838
cap-std-ext = "4.0.3"
39-
composefs = { git = "https://github.com/containers/composefs-rs", rev = "28d4721f77f973f0e394d60d6a69d9b39cb38d7f", package = "composefs", features = ["rhel9"] }
40-
composefs-boot = { git = "https://github.com/containers/composefs-rs", rev = "28d4721f77f973f0e394d60d6a69d9b39cb38d7f", package = "composefs-boot" }
41-
composefs-oci = { git = "https://github.com/containers/composefs-rs", rev = "28d4721f77f973f0e394d60d6a69d9b39cb38d7f", package = "composefs-oci" }
39+
composefs = { git = "https://github.com/containers/composefs-rs", rev = "8d1e570275621531d39b8f01681584bcc85ce01c", package = "composefs", features = ["rhel9"] }
40+
composefs-boot = { git = "https://github.com/containers/composefs-rs", rev = "8d1e570275621531d39b8f01681584bcc85ce01c", package = "composefs-boot" }
41+
composefs-oci = { git = "https://github.com/containers/composefs-rs", rev = "8d1e570275621531d39b8f01681584bcc85ce01c", package = "composefs-oci" }
4242
chrono = { version = "0.4.38", default-features = false }
4343
clap = "4.5.4"
4444
clap_mangen = { version = "0.2.20" }

crates/lib/src/cfsctl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ 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) = composefs_oci::pull(&repo, image, name.as_deref(), None).await?;
249249

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

crates/lib/src/install.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1553,7 +1553,7 @@ async fn initialize_composefs_repository(
15531553
} = &state.source.imageref;
15541554

15551555
// transport's display is already of type "<transport_type>:"
1556-
composefs_oci_pull(&Arc::new(repo), &format!("{transport}{image_name}"), None).await
1556+
composefs_oci_pull(&Arc::new(repo), &format!("{transport}{image_name}"), None, None).await
15571557
}
15581558

15591559
fn get_booted_bls() -> Result<BLSConfig> {
@@ -1988,7 +1988,7 @@ pub(crate) async fn pull_composefs_repo(
19881988

19891989
let repo = open_composefs_repo(&rootfs_dir).context("Opening compoesfs repo")?;
19901990

1991-
let (id, verity) = composefs_oci_pull(&Arc::new(repo), &format!("{transport}:{image}"), None)
1991+
let (id, verity) = composefs_oci_pull(&Arc::new(repo), &format!("{transport}:{image}"), None, None)
19921992
.await
19931993
.context("Pulling composefs repo")?;
19941994

0 commit comments

Comments
 (0)