2021-10-21 15:03:05 +02:00
|
|
|
[package]
|
2021-10-21 15:29:39 +02:00
|
|
|
name = "libcontainer"
|
2021-10-21 15:03:05 +02:00
|
|
|
version = "0.0.1"
|
|
|
|
authors = ["youki team"]
|
2021-10-23 16:32:47 +02:00
|
|
|
edition = "2021"
|
2021-10-21 15:57:27 +02:00
|
|
|
description = "Library for container creation"
|
2021-10-21 15:03:05 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2021-10-21 15:57:27 +02:00
|
|
|
anyhow = "1.0"
|
2021-10-27 11:56:20 +02:00
|
|
|
caps = "0.5.3"
|
2021-10-21 15:57:27 +02:00
|
|
|
|
|
|
|
chrono = { version="0.4", features = ["serde"] }
|
|
|
|
crossbeam-channel = "0.5"
|
2021-10-24 11:36:22 +02:00
|
|
|
dbus = "0.9.5"
|
2021-10-21 15:57:27 +02:00
|
|
|
fastrand = "1.4.1"
|
|
|
|
futures = { version = "0.3", features = ["thread-pool"] }
|
2021-12-14 14:32:19 +01:00
|
|
|
libc = "0.2.112"
|
2021-10-21 15:03:05 +02:00
|
|
|
log = "0.4"
|
2021-11-15 02:08:02 +01:00
|
|
|
mio = { version = "0.8.0", features = ["os-ext", "os-poll"] }
|
2021-10-25 03:32:06 +02:00
|
|
|
nix = "0.23.0"
|
2021-12-13 11:11:03 +01:00
|
|
|
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "12dcd858543db0e7bfb1ef053d1b748f2fda74ee" }
|
2021-10-21 15:03:05 +02:00
|
|
|
path-clean = "0.1.0"
|
2021-12-14 14:32:35 +01:00
|
|
|
procfs = "0.12.0"
|
2021-10-21 15:57:27 +02:00
|
|
|
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"
|
2021-10-21 15:03:05 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-12-13 11:11:03 +01:00
|
|
|
oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "12dcd858543db0e7bfb1ef053d1b748f2fda74ee", features = ["proptests"] }
|
2021-10-21 15:03:05 +02:00
|
|
|
quickcheck = "1"
|
2021-12-13 11:11:03 +01:00
|
|
|
serial_test = "0.5.1"
|