2022-11-30 13:18:17 -05:00
|
|
|
[package]
|
|
|
|
|
name = "bootc"
|
2025-06-30 13:38:27 -04:00
|
|
|
# This is a stub, the real version is from the lib crate
|
|
|
|
|
version = "0.0.0"
|
2026-01-11 16:20:12 +01:00
|
|
|
edition = "2024"
|
2022-11-30 13:18:17 -05:00
|
|
|
license = "MIT OR Apache-2.0"
|
2025-05-19 16:02:42 -04:00
|
|
|
repository = "https://github.com/bootc-dev/bootc"
|
2022-11-30 13:18:17 -05:00
|
|
|
publish = false
|
2023-01-18 17:39:03 -05:00
|
|
|
default-run = "bootc"
|
2022-11-30 13:18:17 -05:00
|
|
|
|
2022-12-07 10:22:50 -05:00
|
|
|
# See https://github.com/coreos/cargo-vendor-filterer
|
|
|
|
|
[package.metadata.vendor-filter]
|
2025-02-06 00:17:31 +01:00
|
|
|
# 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"]
|
2022-12-07 10:22:50 -05:00
|
|
|
|
2022-11-30 13:18:17 -05:00
|
|
|
[dependencies]
|
2025-08-08 10:07:39 -04:00
|
|
|
# Internal crates
|
2026-01-26 08:12:55 +00:00
|
|
|
bootc-lib = { version = "1.13", path = "../lib" }
|
2025-12-09 11:33:08 +08:00
|
|
|
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" }
|
2025-08-08 10:07:39 -04:00
|
|
|
|
|
|
|
|
# Workspace dependencies
|
|
|
|
|
anstream = { workspace = true }
|
|
|
|
|
anyhow = { workspace = true }
|
2025-08-08 09:49:42 -04:00
|
|
|
log = { workspace = true }
|
2025-08-08 10:07:39 -04:00
|
|
|
tokio = { workspace = true, features = ["macros"] }
|
2024-07-16 09:03:21 -04:00
|
|
|
tracing = { workspace = true }
|
2024-07-17 13:31:07 -04:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|