1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-18 13:36:14 +02:00
youki/crates/youki/Cargo.toml

38 lines
909 B
INI
Raw Normal View History

2021-10-22 00:34:05 +02:00
[package]
name = "youki"
version = "0.0.1"
authors = ["youki team"]
2021-10-23 16:32:47 +02:00
edition = "2021"
2021-10-22 00:34:05 +02:00
description = "A container runtime written in Rust"
build = "build.rs"
2021-10-22 00:34:05 +02:00
[dependencies.clap]
version = "3.0.0-beta.5"
2021-10-22 00:34:05 +02:00
default-features = false
features = ["std", "suggestions", "derive", "cargo"]
[dependencies]
anyhow = "1.0.52"
2021-10-22 00:34:05 +02:00
chrono = { version="0.4", features = ["serde"] }
2021-12-30 15:10:35 +01:00
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 = "0.5.3"
once_cell = "1.9.0"
2021-10-22 00:34:05 +02:00
pentacle = "1.0.0"
procfs = "0.12.0"
2021-10-22 00:34:05 +02:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tabwriter = "1"
2021-12-05 14:39:08 +01:00
clap_generate = { version = "3.0.0-beta.5" }
2021-10-22 00:34:05 +02:00
[dev-dependencies]
serial_test = "0.5.1"
[build-dependencies]
anyhow = "1.0.52"
vergen = "6.0"