1
0
mirror of https://github.com/containers/bootc.git synced 2026-02-07 03:45:28 +01:00
Files
bootc/cli/Cargo.toml
Omer Tuchfeld 2fd0458bb6 cli: align package.metadata.vendor-filter
No reason for it to be different than what we have in the root
Cargo.toml

Signed-off-by: Omer Tuchfeld <omer@tuchfeld.dev>
2025-02-06 01:49:36 +01:00

26 lines
693 B
TOML

[package]
name = "bootc"
version = "0.1.9"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/containers/bootc"
readme = "README.md"
publish = false
default-run = "bootc"
# See https://github.com/coreos/cargo-vendor-filterer
[package.metadata.vendor-filter]
# For now we only care about tier 1+2 Linux. (In practice, it's unlikely there is a tier3-only Linux dependency)
platforms = ["*-unknown-linux-gnu"]
[dependencies]
anyhow = { workspace = true }
bootc-lib = { version = "1.0", path = "../lib" }
bootc-utils = { path = "../utils" }
tokio = { workspace = true, features = ["macros"] }
log = "0.4.21"
tracing = { workspace = true }
[lints]
workspace = true