krata/Cargo.toml

119 lines
2.3 KiB
TOML
Raw Normal View History

2024-01-08 20:43:16 +00:00
[workspace]
members = [
2024-03-07 18:12:47 +00:00
"crates/krata",
"crates/oci",
"crates/guest",
"crates/runtime",
"crates/daemon",
"crates/network",
"crates/ctl",
2024-03-07 18:12:47 +00:00
"crates/xen/xencall",
"crates/xen/xenclient",
"crates/xen/xenevtchn",
2024-03-25 04:49:57 +00:00
"crates/xen/xengnt",
2024-03-07 18:12:47 +00:00
"crates/xen/xenstore",
2024-01-08 20:43:16 +00:00
]
resolver = "2"
[workspace.package]
version = "0.0.8"
homepage = "https://krata.dev"
license = "Apache-2.0"
repository = "https://github.com/edera-dev/krata"
[workspace.dependencies]
anyhow = "1.0"
2024-03-07 18:04:22 +00:00
arrayvec = "0.7.4"
async-compression = "0.4.8"
2024-03-07 18:04:22 +00:00
async-stream = "0.3.5"
async-trait = "0.1.80"
backhand = "0.15.0"
2024-03-07 12:14:25 +00:00
byteorder = "1"
2024-03-07 18:04:22 +00:00
bytes = "1.5.0"
2024-03-30 23:23:59 +00:00
cgroups-rs = "0.3.4"
circular-buffer = "0.1.7"
comfy-table = "7.1.1"
2024-03-22 05:49:37 +00:00
crossterm = "0.27.0"
ctrlc = "3.4.4"
elf = "0.7.4"
env_logger = "0.11.0"
etherparse = "0.14.3"
fancy-duration = "0.9.2"
2024-03-07 18:04:22 +00:00
flate2 = "1.0"
futures = "0.3.30"
human_bytes = "0.4"
indicatif = "0.17.8"
2024-03-07 18:04:22 +00:00
ipnetwork = "0.20.0"
libc = "0.2"
log = "0.4.20"
loopdev-3 = "0.5.1"
2024-03-30 06:51:16 +00:00
krata-advmac = "1.1.0"
2024-03-30 06:31:22 +00:00
krata-tokio-tar = "0.4.0"
2024-03-07 18:04:22 +00:00
memchr = "2"
nix = "0.28.0"
oci-spec = "0.6.4"
2024-03-23 04:07:48 +00:00
once_cell = "1.19.0"
2024-03-07 18:04:22 +00:00
path-absolutize = "3.1.1"
path-clean = "1.0.1"
prost = "0.12.4"
prost-build = "0.12.4"
2024-03-23 04:07:48 +00:00
prost-reflect-build = "0.13.0"
prost-types = "0.12.4"
rand = "0.8.5"
redb = "2.0.0"
rtnetlink = "0.14.1"
scopeguard = "1.2.0"
2024-03-07 18:04:22 +00:00
serde_json = "1.0.113"
serde_yaml = "0.9"
sha256 = "1.5.0"
2024-03-07 18:04:22 +00:00
signal-hook = "0.3.17"
slice-copy = "0.3.0"
smoltcp = "0.11.0"
sysinfo = "0.30.9"
termtree = "0.4.1"
2024-03-07 18:04:22 +00:00
thiserror = "1.0"
tokio-tun = "0.11.4"
tonic-build = "0.11.0"
tower = "0.4.13"
2024-03-07 18:04:22 +00:00
udp-stream = "0.0.11"
url = "2.5.0"
walkdir = "2"
xz2 = "0.1"
2024-03-08 14:44:45 +00:00
2024-03-07 18:04:22 +00:00
[workspace.dependencies.clap]
version = "4.4.18"
features = ["derive"]
2024-03-23 04:07:48 +00:00
[workspace.dependencies.prost-reflect]
version = "0.13.1"
2024-03-23 04:07:48 +00:00
features = ["derive"]
2024-03-07 18:04:22 +00:00
[workspace.dependencies.reqwest]
version = "0.12.3"
2024-03-10 00:22:24 +00:00
default-features = false
features = ["rustls-tls"]
2024-03-07 18:04:22 +00:00
[workspace.dependencies.serde]
version = "1.0.196"
features = ["derive"]
[workspace.dependencies.sys-mount]
version = "3.0.0"
default-features = false
[workspace.dependencies.tokio]
version = "1.35.1"
features = ["full"]
[workspace.dependencies.tokio-stream]
version = "0.1"
features = ["io-util", "net"]
[workspace.dependencies.tonic]
version = "0.11.0"
features = ["tls"]
2024-03-07 18:04:22 +00:00
[workspace.dependencies.uuid]
version = "1.6.1"
features = ["v4"]