1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-10 17:46:15 +02:00

update oci-spec-rs to latest.

remove TODO because it is already tracked by issue
This commit is contained in:
yihuaf 2021-10-05 18:25:07 +02:00
parent 6d8fa4daf9
commit b70929cb8c
3 changed files with 6 additions and 18 deletions

4
Cargo.lock generated
View File

@ -900,8 +900,8 @@ dependencies = [
[[package]]
name = "oci-spec"
version = "0.5.1"
source = "git+https://github.com/containers/oci-spec-rs?rev=5018f8e5b0355a82c08962cefa5ab07a05b930c6#5018f8e5b0355a82c08962cefa5ab07a05b930c6"
version = "0.5.2"
source = "git+https://github.com/containers/oci-spec-rs?rev=19c26ca7dc04ece2ea934222a55afa0ead53aa88#19c26ca7dc04ece2ea934222a55afa0ead53aa88"
dependencies = [
"derive_builder",
"getset",

View File

@ -38,10 +38,7 @@ mio = { version = "0.7.13", features = ["os-ext", "os-poll"] }
chrono = { version="0.4", features = ["serde"] }
once_cell = "1.6.0"
futures = { version = "0.3", features = ["thread-pool"] }
# TODO: Fetch from crate.io instead of git when next release oci-spec-rs
# ref: https://github.com/containers/oci-spec-rs/pull/69
# oci-spec = "0.5.1"
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "5018f8e5b0355a82c08962cefa5ab07a05b930c6" }
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "19c26ca7dc04ece2ea934222a55afa0ead53aa88" }
cgroups = { version = "0.1.0", path = "./cgroups" }
systemd = { version = "0.8", default-features = false, optional = true }
dbus = "0.9.2"
@ -53,10 +50,7 @@ pentacle = "1.0.0"
path-clean = "0.1.0"
[dev-dependencies]
# TODO: Fetch from crate.io instead of git when next release oci-spec-rs
# ref: https://github.com/containers/oci-spec-rs/pull/69
# oci-spec = "0.5.1"
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "5018f8e5b0355a82c08962cefa5ab07a05b930c6", features = ["proptests"] }
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "19c26ca7dc04ece2ea934222a55afa0ead53aa88", features = ["proptests"] }
quickcheck = "1"
serial_test = "0.5.1"
ipc-channel = "0.15.0"

View File

@ -14,10 +14,7 @@ nix = "0.22.0"
procfs = "0.10.1"
log = "0.4"
anyhow = "1.0"
# TODO: Fetch from crate.io instead of git when next release oci-spec-rs
# ref: https://github.com/containers/oci-spec-rs/pull/69
# oci-spec = "0.5.1"
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "5018f8e5b0355a82c08962cefa5ab07a05b930c6" }
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "19c26ca7dc04ece2ea934222a55afa0ead53aa88" }
systemd = { version = "0.8", default-features = false, optional = true }
dbus = "0.9.2"
serde = { version = "1.0", features = ["derive"] }
@ -27,10 +24,7 @@ errno = { version = "0.2.7", optional = true }
libc = { version = "0.2.84", optional = true }
[dev-dependencies]
# TODO: Fetch from crate.io instead of git when next release oci-spec-rs
# ref: https://github.com/containers/oci-spec-rs/pull/69
# oci-spec = "0.5.1"
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "5018f8e5b0355a82c08962cefa5ab07a05b930c6", features = ["proptests"] }
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "19c26ca7dc04ece2ea934222a55afa0ead53aa88", features = ["proptests"] }
quickcheck = "1"
clap = "2"
serde = { version = "1.0", features = ["derive"] }