From b01361c07d262b912d84c1c1288a28f389f0c330 Mon Sep 17 00:00:00 2001 From: Benjamin Levin Date: Thu, 7 Jul 2022 15:12:57 -0500 Subject: [PATCH] Update oci-spec to 0.5.7 Signed-off-by: Benjamin Levin --- crates/libcgroups/Cargo.toml | 4 ++-- crates/libcontainer/Cargo.toml | 4 ++-- crates/youki/Cargo.toml | 2 +- tests/rust-integration-tests/integration_test/Cargo.toml | 2 +- tests/rust-integration-tests/runtimetest/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/crates/libcgroups/Cargo.toml b/crates/libcgroups/Cargo.toml index 400dd442..87b5fb2e 100644 --- a/crates/libcgroups/Cargo.toml +++ b/crates/libcgroups/Cargo.toml @@ -24,7 +24,7 @@ nix = "0.24.1" procfs = "0.12.0" log = "0.4" anyhow = "1.0" -oci-spec = { version = "0.5.6", features = ["runtime"] } +oci-spec = { version = "0.5.7", features = ["runtime"] } dbus = { version = "0.9.5", optional = true } fixedbitset = "0.4.1" serde = { version = "1.0", features = ["derive"] } @@ -34,7 +34,7 @@ errno = { version = "0.2.8", optional = true } libc = { version = "0.2.126", optional = true } [dev-dependencies] -oci-spec = { version = "0.5.6", features = ["proptests", "runtime"] } +oci-spec = { version = "0.5.7", features = ["proptests", "runtime"] } quickcheck = "1" mockall = { version = "0.11.1", features = [] } clap = "3.2.5" diff --git a/crates/libcontainer/Cargo.toml b/crates/libcontainer/Cargo.toml index 012d53ce..f83a5081 100644 --- a/crates/libcontainer/Cargo.toml +++ b/crates/libcontainer/Cargo.toml @@ -28,7 +28,7 @@ libc = "0.2.126" log = "0.4" mio = { version = "0.8.4", features = ["os-ext", "os-poll"] } nix = "0.24.1" -oci-spec = { version = "0.5.6", features = ["runtime"] } +oci-spec = { version = "0.5.7", features = ["runtime"] } path-clean = "0.1.0" procfs = "0.12.0" prctl = "1.0.0" @@ -42,7 +42,7 @@ wasmer = { version = "2.2.0", optional = true } wasmer-wasi = { version = "2.3.0", optional = true } [dev-dependencies] -oci-spec = { version = "0.5.6", features = ["proptests", "runtime"] } +oci-spec = { version = "0.5.7", features = ["proptests", "runtime"] } quickcheck = "1" serial_test = "0.7.0" rand = "0.8.5" diff --git a/crates/youki/Cargo.toml b/crates/youki/Cargo.toml index 4919e914..5de6af5a 100644 --- a/crates/youki/Cargo.toml +++ b/crates/youki/Cargo.toml @@ -24,7 +24,7 @@ libcontainer = { version = "0.0.3", path = "../libcontainer" } liboci-cli = { version = "0.0.3", path = "../liboci-cli" } log = { version = "0.4", features = ["std"]} nix = "0.24.1" -oci-spec = { version = "0.5.6", features = ["runtime"] } +oci-spec = { version = "0.5.7", features = ["runtime"] } once_cell = "1.12.0" pentacle = "1.0.0" procfs = "0.12.0" diff --git a/tests/rust-integration-tests/integration_test/Cargo.toml b/tests/rust-integration-tests/integration_test/Cargo.toml index 4c88b162..b084f1bf 100644 --- a/tests/rust-integration-tests/integration_test/Cargo.toml +++ b/tests/rust-integration-tests/integration_test/Cargo.toml @@ -12,7 +12,7 @@ libcontainer = { path = "../../../crates/libcontainer" } log = { version = "0.4", features = ["std"] } nix = "0.24.1" num_cpus = "1.13" -oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "6df620e" } +oci-spec = "0.5.7" once_cell = "1.12.0" pnet_datalink = "0.31.0" procfs = "0.12.0" diff --git a/tests/rust-integration-tests/runtimetest/Cargo.toml b/tests/rust-integration-tests/runtimetest/Cargo.toml index 990fda6a..c612a53a 100644 --- a/tests/rust-integration-tests/runtimetest/Cargo.toml +++ b/tests/rust-integration-tests/runtimetest/Cargo.toml @@ -4,5 +4,5 @@ version = "0.0.1" edition = "2021" [dependencies] -oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "6df620e", features = ["runtime"] } +oci-spec = { version = "0.5.7", features = ["runtime"] } nix = "0.24.1"