diff --git a/Cargo.lock b/Cargo.lock index 31511002..7c5db0ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2354,9 +2354,9 @@ dependencies = [ [[package]] name = "oci-spec" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9421b067205c68dc80af7c68599a9c1eb113f975aafeb874cea7f4d5d41ce3fb" +checksum = "95e7c5a234613dd98d240891270925718736701c2dbce9c5587567133cf8220f" dependencies = [ "derive_builder", "getset", diff --git a/crates/libcgroups/Cargo.toml b/crates/libcgroups/Cargo.toml index aa38f082..dc8d6ff5 100644 --- a/crates/libcgroups/Cargo.toml +++ b/crates/libcgroups/Cargo.toml @@ -22,7 +22,7 @@ cgroupsv2_devices = ["rbpf", "libbpf-sys", "errno", "libc", "nix/dir"] [dependencies] nix = { version = "0.27.1", features = ["signal", "user", "fs"] } procfs = "0.15.1" -oci-spec = { version = "~0.6.2", features = ["runtime"] } +oci-spec = { version = "~0.6.3", features = ["runtime"] } fixedbitset = "0.4.2" serde = { version = "1.0", features = ["derive"] } rbpf = { version = "0.2.0", optional = true } @@ -34,7 +34,7 @@ tracing = { version = "0.1.37", features = ["attributes"] } [dev-dependencies] anyhow = "1.0" -oci-spec = { version = "~0.6.2", features = ["proptests", "runtime"] } +oci-spec = { version = "~0.6.3", features = ["proptests", "runtime"] } quickcheck = "1" mockall = { version = "0.11.4", features = [] } clap = "4.1.6" diff --git a/crates/libcontainer/Cargo.toml b/crates/libcontainer/Cargo.toml index 8c6fbaa0..0212a8d4 100644 --- a/crates/libcontainer/Cargo.toml +++ b/crates/libcontainer/Cargo.toml @@ -39,7 +39,7 @@ nix = { version = "0.27.1", features = [ "term", "hostname", ] } -oci-spec = { version = "~0.6.2", features = ["runtime"] } +oci-spec = { version = "~0.6.3", features = ["runtime"] } once_cell = "1.18.0" procfs = "0.15.1" prctl = "1.0.0" @@ -54,7 +54,7 @@ tracing = { version = "0.1.37", features = ["attributes"] } safe-path = "0.1.0" [dev-dependencies] -oci-spec = { version = "~0.6.2", features = ["proptests", "runtime"] } +oci-spec = { version = "~0.6.3", features = ["proptests", "runtime"] } quickcheck = "1" serial_test = "2.0.0" tempfile = "3" diff --git a/tests/integration_test/Cargo.toml b/tests/integration_test/Cargo.toml index 5959278e..2ad69f63 100644 --- a/tests/integration_test/Cargo.toml +++ b/tests/integration_test/Cargo.toml @@ -11,7 +11,7 @@ libcgroups = { path = "../../crates/libcgroups" } libcontainer = { path = "../../crates/libcontainer" } nix = "0.27.1" num_cpus = "1.16" -oci-spec = { version = "0.6.1", features = ["runtime"] } +oci-spec = { version = "0.6.3", features = ["runtime"] } once_cell = "1.18.0" pnet_datalink = "0.34.0" procfs = "0.15.1" diff --git a/tests/runtimetest/Cargo.toml b/tests/runtimetest/Cargo.toml index 786d784c..e57191da 100644 --- a/tests/runtimetest/Cargo.toml +++ b/tests/runtimetest/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.1" edition = "2021" [dependencies] -oci-spec = { version = "0.6.1", features = ["runtime"] } +oci-spec = { version = "0.6.3", features = ["runtime"] } nix = "0.27.1" anyhow = "1.0"