1
0
mirror of https://github.com/containers/youki synced 2024-11-26 06:08:07 +01:00

Update Cargo.toml for v0.4.1 (#2904)

Signed-off-by: utam0k <k0ma@utam0k.jp>
This commit is contained in:
Toru Komatsu 2024-09-04 22:17:17 +09:00 committed by GitHub
parent ea9616029f
commit 4f464d8471
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 9 additions and 9 deletions

@ -1,6 +1,6 @@
[package] [package]
name = "libcgroups" name = "libcgroups"
version = "0.4.0" # MARK: Version version = "0.4.1" # MARK: Version
description = "Library for cgroup" description = "Library for cgroup"
license-file = "../../LICENSE" license-file = "../../LICENSE"
repository = "https://github.com/containers/youki" repository = "https://github.com/containers/youki"

@ -1,6 +1,6 @@
[package] [package]
name = "libcontainer" name = "libcontainer"
version = "0.4.0" # MARK: Version version = "0.4.1" # MARK: Version
description = "Library for container control" description = "Library for container control"
license-file = "../../LICENSE" license-file = "../../LICENSE"
repository = "https://github.com/containers/youki" repository = "https://github.com/containers/youki"
@ -43,7 +43,7 @@ oci-spec = { version = "0.6.8", features = ["runtime"] }
once_cell = "1.19.0" once_cell = "1.19.0"
procfs = "0.16.0" procfs = "0.16.0"
prctl = "1.0.0" prctl = "1.0.0"
libcgroups = { path = "../libcgroups", default-features = false, version = "0.4.0" } # MARK: Version libcgroups = { path = "../libcgroups", default-features = false, version = "0.4.1" } # MARK: Version
libseccomp = { version = "0.3.0", optional = true } libseccomp = { version = "0.3.0", optional = true }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"

@ -1,6 +1,6 @@
[package] [package]
name = "liboci-cli" name = "liboci-cli"
version = "0.4.0" # MARK: Version version = "0.4.1" # MARK: Version
description = "Parse command line arguments for OCI container runtimes" description = "Parse command line arguments for OCI container runtimes"
license-file = "../../LICENSE" license-file = "../../LICENSE"
repository = "https://github.com/containers/youki" repository = "https://github.com/containers/youki"

@ -1,6 +1,6 @@
[package] [package]
name = "youki" name = "youki"
version = "0.4.0" # MARK: Version version = "0.4.1" # MARK: Version
description = "A container runtime written in Rust" description = "A container runtime written in Rust"
license-file = "../../LICENSE" license-file = "../../LICENSE"
repository = "https://github.com/containers/youki" repository = "https://github.com/containers/youki"
@ -29,9 +29,9 @@ features = ["std", "suggestions", "derive", "cargo", "help", "usage", "error-con
[dependencies] [dependencies]
anyhow = "1.0.86" anyhow = "1.0.86"
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] } chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
libcgroups = { path = "../libcgroups", default-features = false, version = "0.4.0" } # MARK: Version libcgroups = { path = "../libcgroups", default-features = false, version = "0.4.1" } # MARK: Version
libcontainer = { path = "../libcontainer", default-features = false, version = "0.4.0" } # MARK: Version libcontainer = { path = "../libcontainer", default-features = false, version = "0.4.1" } # MARK: Version
liboci-cli = { path = "../liboci-cli", version = "0.4.0" } # MARK: Version liboci-cli = { path = "../liboci-cli", version = "0.4.1" } # MARK: Version
nix = "0.28.0" nix = "0.28.0"
once_cell = "1.19.0" once_cell = "1.19.0"
pentacle = "1.0.0" pentacle = "1.0.0"

@ -83,7 +83,7 @@ Install from the GitHub release as root:
<!--youki release begin--> <!--youki release begin-->
```console ```console
# curl -sSfL https://github.com/containers/youki/releases/download/v0.4.0/youki-0.4.0-$(uname -m)-musl.tar.gz | tar -xzvC /usr/bin/ youki # curl -sSfL https://github.com/containers/youki/releases/download/v0.4.1/youki-0.4.1-$(uname -m)-musl.tar.gz | tar -xzvC /usr/bin/ youki
``` ```
<!--youki release end--> <!--youki release end-->