1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-06-18 17:49:43 +02:00

Merge pull request #596 from utam0k/improvement/bump-oci-spec-to-v0.5.3

Bump oci-spec to 0.5.3 to prevent specifying commit hash.
This commit is contained in:
Thomas Schubart 2022-01-06 23:17:53 +01:00 committed by GitHub
commit fc115defc1
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 13 deletions

17
Cargo.lock generated
View File

@ -657,7 +657,7 @@ dependencies = [
"log",
"nix",
"num_cpus",
"oci-spec 0.5.2 (git+https://github.com/containers/oci-spec-rs?rev=54c5e386f01ab37c9305cc4a83404eb157e42440)",
"oci-spec 0.5.2",
"once_cell",
"pnet",
"procfs",
@ -730,7 +730,7 @@ dependencies = [
"libc",
"log",
"nix",
"oci-spec 0.5.2 (git+https://github.com/containers/oci-spec-rs?rev=12dcd858543db0e7bfb1ef053d1b748f2fda74ee)",
"oci-spec 0.5.3",
"procfs",
"quickcheck",
"rbpf",
@ -755,7 +755,7 @@ dependencies = [
"log",
"mio",
"nix",
"oci-spec 0.5.2 (git+https://github.com/containers/oci-spec-rs?rev=12dcd858543db0e7bfb1ef053d1b748f2fda74ee)",
"oci-spec 0.5.3",
"path-clean",
"prctl",
"procfs",
@ -938,11 +938,10 @@ dependencies = [
[[package]]
name = "oci-spec"
version = "0.5.2"
source = "git+https://github.com/containers/oci-spec-rs?rev=12dcd858543db0e7bfb1ef053d1b748f2fda74ee#12dcd858543db0e7bfb1ef053d1b748f2fda74ee"
source = "git+https://github.com/containers/oci-spec-rs?rev=54c5e386f01ab37c9305cc4a83404eb157e42440#54c5e386f01ab37c9305cc4a83404eb157e42440"
dependencies = [
"derive_builder",
"getset",
"quickcheck",
"serde",
"serde_json",
"thiserror",
@ -950,11 +949,13 @@ dependencies = [
[[package]]
name = "oci-spec"
version = "0.5.2"
source = "git+https://github.com/containers/oci-spec-rs?rev=54c5e386f01ab37c9305cc4a83404eb157e42440#54c5e386f01ab37c9305cc4a83404eb157e42440"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8057bb0f33d7ecdf1f0f7cc74ea5cced7c6c694245e2a8d14700507c3bde32e3"
dependencies = [
"derive_builder",
"getset",
"quickcheck",
"serde",
"serde_json",
"thiserror",
@ -1671,7 +1672,7 @@ dependencies = [
"liboci-cli",
"log",
"nix",
"oci-spec 0.5.2 (git+https://github.com/containers/oci-spec-rs?rev=12dcd858543db0e7bfb1ef053d1b748f2fda74ee)",
"oci-spec 0.5.3",
"once_cell",
"pentacle",
"procfs",

View File

@ -16,7 +16,7 @@ nix = "0.23.1"
procfs = "0.12.0"
log = "0.4"
anyhow = "1.0"
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "12dcd858543db0e7bfb1ef053d1b748f2fda74ee" }
oci-spec = "0.5.3"
dbus = { version = "0.9.5", optional = true }
fixedbitset = "0.4.1"
serde = { version = "1.0", features = ["derive"] }
@ -26,7 +26,7 @@ errno = { version = "0.2.8", optional = true }
libc = { version = "0.2.112", optional = true }
[dev-dependencies]
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "12dcd858543db0e7bfb1ef053d1b748f2fda74ee", features = ["proptests"] }
oci-spec = { version = "0.5.3", features = ["proptests"] }
quickcheck = "1"
clap = "3.0.0-beta.5"
serde = { version = "1.0", features = ["derive"] }

View File

@ -18,7 +18,7 @@ libc = "0.2.112"
log = "0.4"
mio = { version = "0.8.0", features = ["os-ext", "os-poll"] }
nix = "0.23.1"
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "12dcd858543db0e7bfb1ef053d1b748f2fda74ee" }
oci-spec = "0.5.3"
path-clean = "0.1.0"
procfs = "0.12.0"
prctl = "1.0.0"
@ -28,6 +28,6 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[dev-dependencies]
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "12dcd858543db0e7bfb1ef053d1b748f2fda74ee", features = ["proptests"] }
oci-spec = { version = "0.5.3", features = ["proptests"] }
quickcheck = "1"
serial_test = "0.5.1"

View File

@ -20,7 +20,7 @@ libcontainer = { version = "0.0.1", path = "../libcontainer" }
liboci-cli = { version = "0.0.1", path = "../liboci-cli" }
log = { version = "0.4", features = ["std"]}
nix = "0.23.1"
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "12dcd858543db0e7bfb1ef053d1b748f2fda74ee" }
oci-spec = "0.5.3"
once_cell = "1.9.0"
pentacle = "1.0.0"
procfs = "0.12.0"