1
0
mirror of https://github.com/containers/youki synced 2024-11-24 01:44:17 +01:00
youki/crates/libcontainer/Cargo.toml
Furisto 5ddc634d0b Incorporate review feedback
- Correct spelling mistake
- Simplify cpu realtime check
- Reduce allocations
- Add docs
- Remove systemd dependency from libcontainer
2021-11-06 19:21:32 +01:00

33 lines
1.1 KiB
INI

[package]
name = "libcontainer"
version = "0.0.1"
authors = ["youki team"]
edition = "2018"
description = "Library for container creation"
[dependencies]
anyhow = "1.0"
caps = { git = "https://github.com/lucab/caps-rs", rev = "cb54844", features = ["serde_support"] }
chrono = { version="0.4", features = ["serde"] }
crossbeam-channel = "0.5"
dbus = "0.9.5"
fastrand = "1.4.1"
futures = { version = "0.3", features = ["thread-pool"] }
libc = "0.2.105"
log = "0.4"
mio = { version = "0.7.14", features = ["os-ext", "os-poll"] }
nix = "0.23.0"
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "d6fb1e91742313cd0d0085937e2d6df5d4669720" }
path-clean = "0.1.0"
procfs = "0.11.0"
prctl = "1.0.0"
libcgroups = { version = "0.1.0", path = "../libcgroups" }
libseccomp = { version = "0.1.0", path = "../libseccomp" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[dev-dependencies]
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "d6fb1e91742313cd0d0085937e2d6df5d4669720", features = ["proptests"] }
quickcheck = "1"
serial_test = "0.5.1"