-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 957 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "bootc-internal-utils"
description = "Internal implementation component of bootc; do not use"
version = "1.15.2"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bootc-dev/bootc"
[dependencies]
# Workspace dependencies
anstream = { workspace = true }
anyhow = { workspace = true }
cap-std-ext = {workspace = true, features = ["fs_utf8"] }
chrono = { workspace = true, features = ["std"] }
owo-colors = { workspace = true }
rustix = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
shlex = { workspace = true }
tempfile = { workspace = true }
tokio = { workspace = true, features = ["process", "rt", "macros"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
tracing-journald = { workspace = true }
[dev-dependencies]
similar-asserts = { workspace = true }
static_assertions = { workspace = true }
[lints]
workspace = true