mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-18 13:54:29 +01:00
Add a worksapce and run all of the tests in under this workspace. Fixes:#155 Signed-off-by: fupan.lfp <fupan.lfp@antfin.com>
43 lines
1.0 KiB
TOML
43 lines
1.0 KiB
TOML
[package]
|
|
name = "kata-agent"
|
|
version = "0.1.0"
|
|
authors = ["Yang Bo <bo@hyper.sh>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
oci = { path = "oci" }
|
|
logging = { path = "logging" }
|
|
rustjail = { path = "rustjail" }
|
|
protocols = { path = "protocols" }
|
|
netlink = { path = "netlink" }
|
|
lazy_static = "1.3.0"
|
|
error-chain = "0.12.1"
|
|
grpcio = { git="https://github.com/alipay/grpc-rs", branch="rust_agent" }
|
|
protobuf = "2.6.1"
|
|
futures = "0.1.27"
|
|
libc = "0.2.58"
|
|
nix = "0.17.0"
|
|
prctl = "1.0.0"
|
|
serde_json = "1.0.39"
|
|
signal-hook = "0.1.9"
|
|
scan_fmt = "0.2.3"
|
|
scopeguard = "1.0.0"
|
|
regex = "1"
|
|
# slog:
|
|
# - Dynamic keys required to allow HashMap keys to be slog::Serialized.
|
|
# - The 'max_*' features allow changing the log level at runtime
|
|
# (by stopping the compiler from removing log calls).
|
|
slog = { version = "2.5.2", features = ["dynamic-keys", "max_level_trace", "release_max_level_info"] }
|
|
slog-scope = "4.1.2"
|
|
# for testing
|
|
tempfile = "3.1.0"
|
|
|
|
[workspace]
|
|
members = [
|
|
"logging",
|
|
"netlink",
|
|
"oci",
|
|
"protocols",
|
|
"rustjail",
|
|
]
|