mirror of
https://github.com/containers/bootc.git
synced 2026-02-05 15:45:53 +01:00
Mostly just keeping up with things, but this is also prep for us using `GetRawBlob`. Signed-off-by: Colin Walters <walters@verbum.org>
31 lines
715 B
TOML
31 lines
715 B
TOML
# Our integration tests
|
|
[package]
|
|
name = "tests-integration"
|
|
version = "0.1.0"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "tests-integration"
|
|
path = "src/tests-integration.rs"
|
|
|
|
[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 }
|
|
libtest-mimic = "0.8.0"
|
|
oci-spec = "0.8.0"
|
|
rexpect = "0.5"
|
|
rustix = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
xshell = { version = "0.2.6" }
|
|
|
|
[lints]
|
|
workspace = true
|