1
0
mirror of https://github.com/containers/youki synced 2024-11-22 17:02:00 +01:00
youki/Cargo.toml
Travis Sturzl 7649444116 basic device tests
property testing on devices

property testing hugetbl and memory controllers

fix comount checks
2021-06-07 12:17:45 -06:00

29 lines
702 B
INI

[package]
name = "youki"
version = "0.0.1"
authors = ["utam0k <k0ma@utam0k.jp>"]
edition = "2018"
description = "A container runtime written in Rust"
[dependencies]
clap = "3.0.0-beta.2"
nix = "0.19.1"
procfs = "0.9.1"
caps = "0.5.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
prctl = "1.0.0"
libc = "0.2.84"
log = "0.4"
anyhow = "1.0"
mio = { version = "0.7", features = ["os-ext", "os-poll"] }
chrono = "0.4"
once_cell = "1.6.0"
futures = { version = "0.3", features = ["thread-pool"] }
regex = "1.5"
oci_spec = { version = "0.1.0", path = "./oci_spec" }
[dev-dependencies]
oci_spec = { version = "0.1.0", path = "./oci_spec", features = ["proptests"] }
quickcheck = "1"