1
0
mirror of https://github.com/containers/youki synced 2024-09-23 20:42:15 +02:00
youki/Cargo.toml

32 lines
795 B
INI
Raw Normal View History

2021-03-27 12:08:13 +01:00
[package]
name = "youki"
version = "0.0.1"
authors = ["utam0k <k0ma@utam0k.jp>"]
edition = "2018"
description = "A container runtime written in Rust"
2021-03-27 12:08:13 +01:00
[dependencies]
clap = "3.0.0-beta.2"
nix = "0.19.1"
2021-04-18 12:39:09 +02:00
procfs = "0.9.1"
caps = "0.5.1"
2021-03-27 12:08:13 +01:00
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"
2021-05-21 23:35:02 +02:00
futures = { version = "0.3", features = ["thread-pool"] }
2021-05-22 01:54:52 +02:00
regex = "1.5"
2021-05-28 02:53:19 +02:00
oci_spec = { version = "0.1.0", path = "./oci_spec" }
systemd = { version = "0.8", default-features = false }
dbus = "0.9.2"
[dev-dependencies]
oci_spec = { version = "0.1.0", path = "./oci_spec", features = ["proptests"] }
quickcheck = "1"
serial_test = "0.5.1"