mirror of
https://github.com/containers/youki
synced 2024-11-23 17:32:15 +01:00
commit
47e5f74f25
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -1920,7 +1920,7 @@ checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libcgroups"
|
name = "libcgroups"
|
||||||
version = "0.0.5"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"clap",
|
"clap",
|
||||||
@ -1946,7 +1946,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libcontainer"
|
name = "libcontainer"
|
||||||
version = "0.0.5"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bitflags 2.3.2",
|
"bitflags 2.3.2",
|
||||||
@ -1997,7 +1997,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "liboci-cli"
|
name = "liboci-cli"
|
||||||
version = "0.0.5"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
]
|
]
|
||||||
@ -5429,7 +5429,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "youki"
|
name = "youki"
|
||||||
version = "0.0.5"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"caps",
|
"caps",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "libcgroups"
|
name = "libcgroups"
|
||||||
version = "0.0.5"
|
version = "0.1.0"
|
||||||
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.0.5"
|
version = "0.1.0"
|
||||||
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"
|
||||||
@ -31,7 +31,7 @@ oci-spec = { version = "^0.6.1", features = ["runtime"] }
|
|||||||
once_cell = "1.18.0"
|
once_cell = "1.18.0"
|
||||||
procfs = "0.15.1"
|
procfs = "0.15.1"
|
||||||
prctl = "1.0.0"
|
prctl = "1.0.0"
|
||||||
libcgroups = { version = "0.0.5", path = "../libcgroups", default-features = false }
|
libcgroups = { version = "0.1.0", path = "../libcgroups", default-features = false }
|
||||||
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.0.5"
|
version = "0.1.0"
|
||||||
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.0.5"
|
version = "0.1.0"
|
||||||
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"
|
||||||
@ -28,9 +28,9 @@ features = ["std", "suggestions", "derive", "cargo", "help", "usage", "error-con
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.71"
|
anyhow = "1.0.71"
|
||||||
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
|
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
|
||||||
libcgroups = { version = "0.0.5", path = "../libcgroups", default-features = false }
|
libcgroups = { version = "0.1.0", path = "../libcgroups", default-features = false }
|
||||||
libcontainer = { version = "0.0.5", path = "../libcontainer", default-features = false }
|
libcontainer = { version = "0.1.0", path = "../libcontainer", default-features = false }
|
||||||
liboci-cli = { version = "0.0.5", path = "../liboci-cli" }
|
liboci-cli = { version = "0.1.0", path = "../liboci-cli" }
|
||||||
nix = "0.26.2"
|
nix = "0.26.2"
|
||||||
oci-spec = { version = "^0.6.1", features = ["runtime"] }
|
oci-spec = { version = "^0.6.1", features = ["runtime"] }
|
||||||
once_cell = "1.18.0"
|
once_cell = "1.18.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user