1
0
mirror of https://github.com/containers/bootc.git synced 2026-02-05 06:45:13 +01:00
Files
bootc/crates/mount/Cargo.toml
Pragyan Poudyal a718597878 Add a composefs backend
This adds a new off-by default feature to enable
a new composefs-native backend for bootc. This
is all still a live work in progress, but
we're landing this first tranche of work to help
avoid continual issues with rebasing.

Thanks to everyone who worked on it!

xref https://github.com/bootc-dev/bootc/issues/1190

Co-authored-by: John Eckersberg <jeckersb@redhat.com>
Co-authored-by: Robert Sturla <robertsturla@outlook.com>
Co-authored-by: Colin Walters <walters@verbum.org>
Signed-off-by: Pragyan Poudyal <pragyanpoudyal41999@gmail.com>
2025-09-12 12:16:35 -04:00

31 lines
797 B
TOML

[package]
description = "Internal mount code"
# Should never be published to crates.io
publish = false
edition = "2021"
license = "MIT OR Apache-2.0"
name = "bootc-mount"
repository = "https://github.com/bootc-dev/bootc"
version = "0.0.0"
[dependencies]
# Internal crates
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.0.0" }
# Workspace dependencies
anyhow = { workspace = true }
camino = { workspace = true, features = ["serde1"] }
fn-error-context = { workspace = true }
libc = { workspace = true }
rustix = { workspace = true }
serde = { workspace = true, features = ["derive"] }
tracing = { workspace = true }
tempfile = { workspace = true }
cap-std-ext = { workspace = true }
[dev-dependencies]
indoc = { workspace = true }
[lib]
path = "src/mount.rs"