mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 21:00:55 +00:00
Signed-off-by: edera-cultivation[bot] <165992271+edera-cultivation[bot]@users.noreply.github.com> Co-authored-by: edera-cultivation[bot] <165992271+edera-cultivation[bot]@users.noreply.github.com>
41 lines
955 B
TOML
41 lines
955 B
TOML
[package]
|
|
name = "krata-network"
|
|
description = "Networking 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 }
|
|
clap = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
etherparse = { workspace = true }
|
|
futures = { workspace = true }
|
|
krata = { path = "../krata", version = "^0.0.5" }
|
|
krata-advmac = { workspace = true }
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
rtnetlink = { workspace = true }
|
|
smoltcp = { workspace = true }
|
|
tonic = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-tun = { workspace = true }
|
|
udp-stream = { workspace = true }
|
|
uuid = { workspace = true }
|
|
|
|
[lib]
|
|
name = "kratanet"
|
|
|
|
[[bin]]
|
|
name = "kratanet"
|
|
path = "bin/network.rs"
|
|
|
|
[[example]]
|
|
name = "ping"
|
|
path = "examples/ping.rs"
|