[package]
edition = "2024"
name = "aodv"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Userspace AODV control-plane implementation based on RFC 3561"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Fierthraix/aodv-rs"
[lib]
name = "aodv"
path = "src/lib.rs"
[[bin]]
name = "aodv"
path = "src/main.rs"
[[test]]
name = "simulated_network"
path = "tests/simulated_network.rs"
[[test]]
name = "udp_integration"
path = "tests/udp_integration.rs"
[dependencies.bytes]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.libc]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_yaml]
version = "0.9"
[dependencies.socket2]
version = "0.6"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"net",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(any(target_os = "linux", target_os = "windows"))'.dependencies.etherparse]
version = "0.20"
[target.'cfg(any(target_os = "linux", target_os = "windows"))'.dependencies.tun-rs]
version = "2.8"
features = ["async_tokio"]
[target.'cfg(target_os = "linux")'.dependencies.futures-util]
version = "0.3"
[target.'cfg(target_os = "linux")'.dependencies.rtnetlink]
version = "0.21"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_NetworkManagement_IpHelper",
"Win32_NetworkManagement_Ndis",
"Win32_Networking_WinSock",
]