2024-02-06 09:07:18 +00:00
|
|
|
[package]
|
2024-02-21 20:57:46 +00:00
|
|
|
name = "krata"
|
2024-02-06 09:07:18 +00:00
|
|
|
version.workspace = true
|
|
|
|
edition = "2021"
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-04 12:19:03 +00:00
|
|
|
anyhow = { workspace = true }
|
|
|
|
libc = { workspace = true }
|
2024-03-05 11:35:25 +00:00
|
|
|
log = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
nix = { workspace = true, features = ["ioctl", "socket"] }
|
|
|
|
prost = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
2024-03-05 11:35:25 +00:00
|
|
|
tokio = { workspace = true }
|
2024-03-06 12:05:01 +00:00
|
|
|
tonic = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
url = { workspace = true }
|
2024-03-06 12:05:01 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
tonic-build = { workspace = true }
|
2024-03-04 12:19:03 +00:00
|
|
|
|
2024-02-06 09:07:18 +00:00
|
|
|
[lib]
|
2024-03-07 18:04:22 +00:00
|
|
|
name = "krata"
|
2024-03-04 12:19:03 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "ethtool"
|
|
|
|
path = "examples/ethtool.rs"
|