-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 864 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 864 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
32
33
34
35
# Our integration tests
[package]
name = "tests-integration"
version = "0.1.0"
license = "MIT OR Apache-2.0"
edition = "2024"
publish = false
[[bin]]
name = "tests-integration"
path = "src/tests-integration.rs"
[dependencies]
# Workspace dependencies
anyhow = { workspace = true }
camino = { workspace = true }
cap-std-ext = { workspace = true }
clap = { workspace = true, features = ["derive","cargo"] }
fn-error-context = { workspace = true }
indoc = { workspace = true }
rustix = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tempfile = { workspace = true }
xshell = { workspace = true }
bootc-kernel-cmdline = { path = "../kernel_cmdline", version = "0.0.0" }
# Crate-specific dependencies
libtest-mimic = "0.8.0"
oci-spec = "0.9.0"
rexpect = "0.6"
scopeguard = "1.2.0"
[lints]
workspace = true