blob: aea7700d9500dbb448ea6bbf42059afe95c3d613 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[package]
name = "wireguard"
version = "0.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.79"
futures = "0.3.30"
genetlink = "=0.2.6"
ipnet = { version = "2.9.0", features = ["serde"] }
netlink-packet-core = "=0.8.1"
netlink-packet-generic = "=0.4.0"
netlink-packet-route = "=0.28.0"
netlink-packet-wireguard = "=0.3.0"
rand = "0.8.5"
rtnetlink = "=0.20.0"
serde = "1.0.195"
tokio = { version = "1.35.1", features = ["full"] }
tracing = "0.1.40"
|