2024-03-05 11:35:25 +00:00
|
|
|
[package]
|
2024-03-30 06:17:30 +00:00
|
|
|
name = "krata-daemon"
|
2024-03-30 07:11:14 +00:00
|
|
|
description = "Daemon for the krata hypervisor."
|
|
|
|
license.workspace = true
|
2024-03-30 09:32:19 +00:00
|
|
|
version= "0.0.3"
|
2024-03-30 07:11:14 +00:00
|
|
|
homepage.workspace = true
|
|
|
|
repository.workspace = true
|
2024-03-05 11:35:25 +00:00
|
|
|
edition = "2021"
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
async-stream = { workspace = true }
|
|
|
|
async-trait = { workspace = true }
|
2024-03-28 22:38:21 +00:00
|
|
|
bytes = { workspace = true }
|
2024-04-02 08:57:34 +00:00
|
|
|
circular-buffer = { workspace = true }
|
2024-03-05 11:35:25 +00:00
|
|
|
clap = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
env_logger = { workspace = true }
|
2024-03-05 11:35:25 +00:00
|
|
|
futures = { workspace = true }
|
2024-03-30 09:32:19 +00:00
|
|
|
krata = { path = "../krata", version = "^0.0.3" }
|
|
|
|
krata-runtime = { path = "../runtime", version = "^0.0.3" }
|
2024-03-07 18:04:22 +00:00
|
|
|
log = { workspace = true }
|
2024-03-14 14:03:11 +00:00
|
|
|
prost = { workspace = true }
|
|
|
|
redb = { workspace = true }
|
2024-03-05 23:10:31 +00:00
|
|
|
signal-hook = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
tokio = { workspace = true }
|
|
|
|
tokio-stream = { workspace = true }
|
|
|
|
tonic = { workspace = true, features = ["tls"] }
|
|
|
|
uuid = { workspace = true }
|
2024-03-05 11:35:25 +00:00
|
|
|
|
|
|
|
[lib]
|
2024-03-07 18:04:22 +00:00
|
|
|
name = "kratad"
|
2024-03-05 11:35:25 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "kratad"
|
|
|
|
path = "bin/daemon.rs"
|