Skip to content

Commit

Permalink
Merge pull request #1500 from utam0k/oci-spec-mitigate
Browse files Browse the repository at this point in the history
Relax the version of some crates we dependent
  • Loading branch information
YJDoc2 committed Jan 24, 2023
2 parents 5bf1ea2 + 70b5d9f commit fbd29f7
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 15 deletions.
62 changes: 53 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/libcgroups/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ nix = "0.25.0"
procfs = "0.14.2"
log = "0.4"
anyhow = "1.0"
oci-spec = { version = "0.6.0", features = ["runtime"] }
oci-spec = { version = "^0.5.5", features = ["runtime"] }
dbus = { version = "0.9.7", optional = true }
fixedbitset = "0.4.2"
serde = { version = "1.0", features = ["derive"] }
Expand All @@ -34,7 +34,7 @@ errno = { version = "0.2.8", optional = true }
libc = { version = "0.2.139", optional = true }

[dev-dependencies]
oci-spec = { version = "0.6.0", features = ["proptests", "runtime"] }
oci-spec = { version = "^0.5.5", features = ["proptests", "runtime"] }
quickcheck = "1"
mockall = { version = "0.11.3", features = [] }
clap = "4.0.32"
Expand Down
6 changes: 3 additions & 3 deletions crates/libcontainer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ bitflags = "1.3.2"
caps = "0.5.5"
chrono = { version = "0.4", features = ["serde"] }
crossbeam-channel = "0.5"
fastrand = "1.8.0"
fastrand = "^1.7.0"
futures = { version = "0.3", features = ["thread-pool"] }
libc = "0.2.139"
log = "0.4"
mio = { version = "0.8.5", features = ["os-ext", "os-poll"] }
nix = "0.25.0"
oci-spec = { version = "0.6.0", features = ["runtime"] }
oci-spec = { version = "^0.5.5", features = ["runtime"] }
path-clean = "0.1.0"
procfs = "0.14.2"
prctl = "1.0.0"
Expand All @@ -50,7 +50,7 @@ wasmtime = {version = "4.0.0", optional = true }
wasmtime-wasi = {version = "4.0.0", optional = true }

[dev-dependencies]
oci-spec = { version = "0.6.0", features = ["proptests", "runtime"] }
oci-spec = { version = "^0.5.5", features = ["proptests", "runtime"] }
quickcheck = "1"
serial_test = "1.0.0"
rand = "0.8.5"
2 changes: 1 addition & 1 deletion crates/youki/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ libcontainer = { version = "0.0.4", path = "../libcontainer", default-features =
liboci-cli = { version = "0.0.4", path = "../liboci-cli" }
log = { version = "0.4", features = ["std"] }
nix = "0.25.0"
oci-spec = { version = "0.6.0", features = ["runtime"] }
oci-spec = { version = "^0.5.5", features = ["runtime"] }
once_cell = "1.17.0"
pentacle = "1.0.0"
procfs = "0.14.2"
Expand Down

0 comments on commit fbd29f7

Please sign in to comment.