2024-02-06 09:07:18 +00:00
|
|
|
[package]
|
2024-03-30 06:17:30 +00:00
|
|
|
name = "krata-network"
|
2024-03-30 07:11:14 +00:00
|
|
|
description = "Networking services for the krata hypervisor."
|
|
|
|
license.workspace = true
|
2024-04-02 23:50:45 +00:00
|
|
|
version.workspace = true
|
2024-03-30 07:11:14 +00:00
|
|
|
homepage.workspace = true
|
|
|
|
repository.workspace = true
|
2024-02-06 09:07:18 +00:00
|
|
|
edition = "2021"
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
async-trait = { workspace = true }
|
|
|
|
bytes = { workspace = true }
|
2024-02-06 09:07:18 +00:00
|
|
|
clap = { workspace = true }
|
|
|
|
env_logger = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
etherparse = { workspace = true }
|
2024-02-06 09:07:18 +00:00
|
|
|
futures = { workspace = true }
|
2024-04-15 19:15:00 +00:00
|
|
|
krata = { path = "../krata", version = "^0.0.9" }
|
2024-03-30 06:51:16 +00:00
|
|
|
krata-advmac = { workspace = true }
|
2024-02-06 14:35:55 +00:00
|
|
|
libc = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
log = { workspace = true }
|
|
|
|
rtnetlink = { workspace = true }
|
2024-02-08 12:17:51 +00:00
|
|
|
smoltcp = { workspace = true }
|
2024-03-27 02:54:39 +00:00
|
|
|
tonic = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
tokio = { workspace = true }
|
2024-03-03 13:36:39 +00:00
|
|
|
tokio-tun = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
udp-stream = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
2024-02-12 14:24:38 +00:00
|
|
|
|
2024-02-06 09:07:18 +00:00
|
|
|
[lib]
|
2024-03-07 18:04:22 +00:00
|
|
|
name = "kratanet"
|
2024-02-06 09:07:18 +00:00
|
|
|
|
|
|
|
[[bin]]
|
2024-02-21 20:57:46 +00:00
|
|
|
name = "kratanet"
|
2024-02-06 09:07:18 +00:00
|
|
|
path = "bin/network.rs"
|
2024-02-10 21:13:47 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "ping"
|
|
|
|
path = "examples/ping.rs"
|