1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-18 05:26:13 +02:00
youki/crates/youki/Cargo.toml
Furisto e3fcdafc92 Bump procfs from 0.13.2 to 0.14.0
Signed-off-by: Furisto <24721048+Furisto@users.noreply.github.com>
2022-08-06 09:48:19 +02:00

42 lines
1.1 KiB
INI

[package]
name = "youki"
version = "0.0.3"
description = "A container runtime written in Rust"
license-file = "../../LICENSE"
repository = "https://github.com/containers/youki"
homepage = "https://containers.github.io/youki"
readme = "../../README.md"
authors = ["youki team"]
edition = "2021"
build = "build.rs"
keywords = ["youki", "container"]
[dependencies.clap]
version = "3.2.16"
default-features = false
features = ["std", "suggestions", "derive", "cargo"]
[dependencies]
anyhow = "1.0.58"
chrono = { version="0.4", features = ["serde"] }
libcgroups = { version = "0.0.3", path = "../libcgroups" }
libcontainer = { version = "0.0.3", path = "../libcontainer" }
liboci-cli = { version = "0.0.3", path = "../liboci-cli" }
log = { version = "0.4", features = ["std"]}
nix = "0.24.2"
oci-spec = { version = "0.5.7", features = ["runtime"] }
once_cell = "1.13.0"
pentacle = "1.0.0"
procfs = "0.14.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tabwriter = "1"
clap_complete = "3.2.3"
[dev-dependencies]
serial_test = "0.8.0"
[build-dependencies]
anyhow = "1.0.58"
vergen = "7.3"