1
0
mirror of https://github.com/containers/bootc.git synced 2026-02-05 15:45:53 +01:00

Update to latest composefs-rs

To unblock reverse dependency testing.

(We still have the forked cfsctl, that's the only thing)

Signed-off-by: Colin Walters <walters@verbum.org>
This commit is contained in:
Colin Walters
2026-01-29 09:38:07 -05:00
parent 2ab1dcdd11
commit 4f51a5fbcb
3 changed files with 7 additions and 7 deletions

6
Cargo.lock generated
View File

@@ -597,7 +597,7 @@ checksum = "55b672471b4e9f9e95499ea597ff64941a309b2cdbffcc46f2cc5e2d971fd335"
[[package]] [[package]]
name = "composefs" name = "composefs"
version = "0.3.0" version = "0.3.0"
source = "git+https://github.com/containers/composefs-rs?rev=4a060161e0122bd2727e639437c61e05ecc7cab3#4a060161e0122bd2727e639437c61e05ecc7cab3" source = "git+https://github.com/containers/composefs-rs?rev=ce3cd9bf7aa0ad2ee8d3814101aa9cd50fd3598d#ce3cd9bf7aa0ad2ee8d3814101aa9cd50fd3598d"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"hex", "hex",
@@ -617,7 +617,7 @@ dependencies = [
[[package]] [[package]]
name = "composefs-boot" name = "composefs-boot"
version = "0.3.0" version = "0.3.0"
source = "git+https://github.com/containers/composefs-rs?rev=4a060161e0122bd2727e639437c61e05ecc7cab3#4a060161e0122bd2727e639437c61e05ecc7cab3" source = "git+https://github.com/containers/composefs-rs?rev=ce3cd9bf7aa0ad2ee8d3814101aa9cd50fd3598d#ce3cd9bf7aa0ad2ee8d3814101aa9cd50fd3598d"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"composefs", "composefs",
@@ -630,7 +630,7 @@ dependencies = [
[[package]] [[package]]
name = "composefs-oci" name = "composefs-oci"
version = "0.3.0" version = "0.3.0"
source = "git+https://github.com/containers/composefs-rs?rev=4a060161e0122bd2727e639437c61e05ecc7cab3#4a060161e0122bd2727e639437c61e05ecc7cab3" source = "git+https://github.com/containers/composefs-rs?rev=ce3cd9bf7aa0ad2ee8d3814101aa9cd50fd3598d#ce3cd9bf7aa0ad2ee8d3814101aa9cd50fd3598d"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-compression", "async-compression",

View File

@@ -49,9 +49,9 @@ clap_mangen = { version = "0.2.20" }
# composefs-boot = { path = "/home/user/src/composefs-rs/crates/composefs-boot" } # composefs-boot = { path = "/home/user/src/composefs-rs/crates/composefs-boot" }
# composefs-oci = { path = "/home/user/src/composefs-rs/crates/composefs-oci" } # composefs-oci = { path = "/home/user/src/composefs-rs/crates/composefs-oci" }
# The Justfile will auto-detect these and bind-mount them into container builds. # The Justfile will auto-detect these and bind-mount them into container builds.
composefs = { git = "https://github.com/containers/composefs-rs", rev = "4a060161e0122bd2727e639437c61e05ecc7cab3", package = "composefs", features = ["rhel9"] } composefs = { git = "https://github.com/containers/composefs-rs", rev = "ce3cd9bf7aa0ad2ee8d3814101aa9cd50fd3598d", package = "composefs", features = ["rhel9"] }
composefs-boot = { git = "https://github.com/containers/composefs-rs", rev = "4a060161e0122bd2727e639437c61e05ecc7cab3", package = "composefs-boot" } composefs-boot = { git = "https://github.com/containers/composefs-rs", rev = "ce3cd9bf7aa0ad2ee8d3814101aa9cd50fd3598d", package = "composefs-boot" }
composefs-oci = { git = "https://github.com/containers/composefs-rs", rev = "4a060161e0122bd2727e639437c61e05ecc7cab3", package = "composefs-oci" } composefs-oci = { git = "https://github.com/containers/composefs-rs", rev = "ce3cd9bf7aa0ad2ee8d3814101aa9cd50fd3598d", package = "composefs-oci" }
fn-error-context = "0.2.1" fn-error-context = "0.2.1"
hex = "0.4.3" hex = "0.4.3"
indicatif = "0.18.0" indicatif = "0.18.0"

View File

@@ -383,7 +383,7 @@ where
} }
} }
Command::GC => { Command::GC => {
repo.gc()?; repo.gc(&[])?;
} }
} }
Ok(()) Ok(())