mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 21:00:55 +00:00
27 lines
523 B
TOML
27 lines
523 B
TOML
[package]
|
|
name = "krata"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
nix = { workspace = true, features = ["ioctl", "socket"] }
|
|
prost = { workspace = true }
|
|
serde = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tonic = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
tonic-build = { workspace = true }
|
|
|
|
[lib]
|
|
name = "krata"
|
|
|
|
[[example]]
|
|
name = "ethtool"
|
|
path = "examples/ethtool.rs"
|