mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-02-22 06:54:30 +01:00
34 lines
917 B
TOML
34 lines
917 B
TOML
[package]
|
|
name = "kata-agent"
|
|
version = "0.1.0"
|
|
authors = ["Yang Bo <bo@hyper.sh>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
oci = { path = "oci" }
|
|
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.14.1"
|
|
prctl = "1.0.0"
|
|
serde_json = "1.0.39"
|
|
signal-hook = "0.1.9"
|
|
scan_fmt = "0.2.3"
|
|
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-json = "2.3.0"
|
|
slog-async = "2.3.0"
|
|
slog-scope = "4.1.2"
|
|
# for testing
|
|
tempfile = "3.1.0"
|