mirror of
https://github.com/tonarino/innernet.git
synced 2024-11-28 08:58:37 +02:00
09e68c2c01
also introduces a new `netlink-request` crate to help modularize the netlink code. this currently depends on a fork of the `netlink` project, but we should be able to use the official version soon.
12 lines
331 B
TOML
12 lines
331 B
TOML
[package]
|
|
name = "netlink-request"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
netlink-sys = "0.8"
|
|
netlink-packet-core = "0.4"
|
|
netlink-packet-generic = "0.3"
|
|
netlink-packet-route = "0.10"
|
|
netlink-packet-wireguard = { git = "https://github.com/mcginty/netlink", branch = "wireguard-fixes" }
|