44 lines
1.4 KiB
TOML
44 lines
1.4 KiB
TOML
[package]
|
|
name = "nym-wireguard"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-recursion = "1.0.4"
|
|
base64 = "0.21.3"
|
|
bincode = "1.3.3"
|
|
# The latest version on crates.io at the time of writing this (6.0.0) has a
|
|
# version mismatch with x25519-dalek/curve25519-dalek that is resolved in the
|
|
# latest commit. So pick that for now.
|
|
#boringtun = "0.6.0"
|
|
boringtun = { workspace = true }
|
|
bytes = "1.5.0"
|
|
#defguard_wireguard_rs = { git = "https://github.com/DefGuard/wireguard-rs", rev = "d40df5c4e598918253682c42c4aa189d0ec2499a" }
|
|
wireguard-control = { path = "../../../innernet/wireguard-control" }
|
|
dashmap = "5.5.3"
|
|
etherparse = "0.13.0"
|
|
futures = "0.3.28"
|
|
ip_network = "0.4.1"
|
|
ip_network_table = "0.2.0"
|
|
log.workspace = true
|
|
nym-network-defaults = { path = "../network-defaults" }
|
|
nym-task = { path = "../task" }
|
|
nym-wireguard-types = { path = "../wireguard-types" }
|
|
nym-sphinx = { path = "../nymsphinx" }
|
|
nym-tun = { path = "../tun" , features = ["wireguard"] }
|
|
rand.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tap.workspace = true
|
|
thiserror.workspace = true
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "net", "io-util"] }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
tokio-tun = "0.9.0"
|