mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-03 21:21:32 +00:00
* feat: initial support for idm send in daemon * feat: implement IdmClient backend support * feat: daemon idm now uses IdmClient * fix: implement channel destruction propagation * feat: implement request response idm system * feat: implement metrics support * proto: move metrics into GuestMetrics for reusability * fix: log level of guest agent was trace * feat: metrics tree with process information
43 lines
1.0 KiB
TOML
43 lines
1.0 KiB
TOML
[package]
|
|
name = "krata"
|
|
description = "Client library and common services for the krata hypervisor."
|
|
license.workspace = true
|
|
version.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
bytes = { workspace = true }
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
prost = { workspace = true }
|
|
prost-reflect = { workspace = true }
|
|
prost-types = { workspace = true }
|
|
scopeguard = { workspace = true }
|
|
serde = { workspace = true }
|
|
tonic = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
tower = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = { workspace = true, features = ["term"] }
|
|
|
|
[build-dependencies]
|
|
tonic-build = { workspace = true }
|
|
prost-build = { workspace = true }
|
|
prost-reflect-build = { workspace = true }
|
|
|
|
[lib]
|
|
name = "krata"
|
|
|
|
[[example]]
|
|
name = "ethtool"
|
|
path = "examples/ethtool.rs"
|