mirror of
https://github.com/containers/bootc.git
synced 2026-02-05 15:45:53 +01:00
58 lines
1.8 KiB
TOML
58 lines
1.8 KiB
TOML
[package]
|
|
description = "bootc implementation"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
name = "bootc-lib"
|
|
readme = "README.md"
|
|
repository = "https://github.com/cgwalters/bootc"
|
|
version = "0.1.0"
|
|
rust-version = "1.64.0"
|
|
|
|
include = ["/src", "LICENSE-APACHE", "LICENSE-MIT"]
|
|
|
|
[dependencies]
|
|
anstream = "0.6.13"
|
|
anstyle = "1.0.6"
|
|
anyhow = "1.0"
|
|
camino = { version = "1.1.6", features = ["serde1"] }
|
|
ostree-ext = { version = "0.13.3" }
|
|
chrono = { version = "0.4.35", features = ["serde"] }
|
|
clap = { version= "4.5", features = ["derive"] }
|
|
clap_mangen = { version = "0.2", optional = true }
|
|
cap-std-ext = "4"
|
|
hex = "^0.4.3"
|
|
fn-error-context = "0.2.1"
|
|
gvariant = "0.4.0"
|
|
indicatif = "0.17.8"
|
|
libc = "^0.2.153"
|
|
liboverdrop = "0.1.0"
|
|
libsystemd = "0.7"
|
|
once_cell = "1.19"
|
|
openssl = "^0.10.64"
|
|
# TODO drop this in favor of rustix
|
|
nix = { version = "0.28", features = ["ioctl", "sched"] }
|
|
regex = "1.10.3"
|
|
rustix = { "version" = "0.38", features = ["thread", "fs", "system", "process"] }
|
|
schemars = { version = "0.8.16", features = ["chrono"] }
|
|
serde = { features = ["derive"], version = "1.0.197" }
|
|
serde_ignored = "0.1.10"
|
|
serde_json = "1.0.114"
|
|
serde_yaml = "0.9.32"
|
|
serde_with = ">= 3.6.1, < 4"
|
|
tokio = { features = ["io-std", "time", "process", "rt", "net"], version = ">= 1.36.0" }
|
|
tokio-util = { features = ["io-util"], version = "0.7" }
|
|
tracing = "0.1"
|
|
tempfile = "3.10.1"
|
|
toml = "0.8.11"
|
|
xshell = { version = "0.2", optional = true }
|
|
uuid = { version = "1.7.0", features = ["v4"] }
|
|
|
|
[features]
|
|
default = ["install"]
|
|
# This feature enables `bootc install`. Disable if you always want to use an external installer.
|
|
install = []
|
|
# Implementation detail of man page generation.
|
|
docgen = ["clap_mangen"]
|
|
# This feature should only be enabled in CI environments.
|
|
internal-testing-api = ["xshell"]
|