mirror of
https://github.com/containers/bootc.git
synced 2026-02-05 06:45:13 +01:00
28 lines
762 B
TOML
28 lines
762 B
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.63.0"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
camino = "1.0.4"
|
|
ostree-ext = { git = "https://github.com/ostreedev/ostree-rs-ext" }
|
|
clap = { version= "3.2", features = ["derive"] }
|
|
clap_mangen = { version = "0.1", optional = true }
|
|
cap-std-ext = "1.0.1"
|
|
indicatif = "0.17.0"
|
|
serde = { features = ["derive"], version = "1.0.125" }
|
|
serde_json = "1.0.64"
|
|
tokio = { features = ["io-std", "time", "process", "rt", "net"], version = ">= 1.13.0" }
|
|
tokio-util = { features = ["io-util"], version = "0.7" }
|
|
tracing = "0.1"
|
|
|
|
[features]
|
|
docgen = ["clap_mangen"]
|
|
|