mirror of
https://github.com/containers/bootc.git
synced 2026-02-05 06:45:13 +01:00
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>
31 lines
797 B
TOML
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"
|