Skip to content

Commit

Permalink
Merge pull request #578 from utam0k/fix/align-version
Browse files Browse the repository at this point in the history
align the version of crates.
  • Loading branch information
Furisto authored Dec 30, 2021
2 parents faed120 + 89022f4 commit 5eaab7d
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/libcgroups/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libcgroups"
version = "0.1.0"
version = "0.0.1"
edition = "2021"
autoexamples = false

Expand Down
4 changes: 2 additions & 2 deletions crates/libcontainer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "12dcd858
path-clean = "0.1.0"
procfs = "0.12.0"
prctl = "1.0.0"
libcgroups = { version = "0.1.0", path = "../libcgroups" }
libseccomp = { version = "0.1.0", path = "../libseccomp" }
libcgroups = { version = "0.0.1", path = "../libcgroups" }
libseccomp = { version = "0.0.1", path = "../libseccomp" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

Expand Down
2 changes: 1 addition & 1 deletion crates/libseccomp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libseccomp"
version = "0.1.0"
version = "0.0.1"
edition = "2021"

build = "build.rs"
Expand Down
4 changes: 2 additions & 2 deletions crates/test_framework/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "test_framework"
version = "0.1.0"
version = "0.0.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.52"
crossbeam = "0.8.1"
crossbeam = "0.8.1"
8 changes: 4 additions & 4 deletions crates/youki/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ features = ["std", "suggestions", "derive", "cargo"]
[dependencies]
anyhow = "1.0.52"
chrono = { version="0.4", features = ["serde"] }
libcgroups = { path = "../libcgroups" }
libcontainer = { path = "../libcontainer" }
liboci-cli = { path = "../liboci-cli" }
log = {version = "0.4", features = ["std"]}
libcgroups = { version = "0.0.1", path = "../libcgroups" }
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" }
once_cell = "1.9.0"
Expand Down

0 comments on commit 5eaab7d

Please sign in to comment.