96b54db060
* wip * wip * Most channels are in place * tidy * Send data to tunnel * wip: adding in boringtun * Handle timers * Add consume_wg * Split into mod * Reorder * Comments * Refine channel handling * Sort out dependency conflict * Move wireguard listener in gateway beind a feature flag
27 lines
873 B
TOML
27 lines
873 B
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"
|
|
# 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 = { git = "https://github.com/cloudflare/boringtun", rev = "e1d6360d6ab4529fc942a078e4c54df107abe2ba" }
|
|
bytes = "1.5.0"
|
|
futures = "0.3.28"
|
|
log.workspace = true
|
|
nym-task = { path = "../task" }
|
|
tap.workspace = true
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "net"]}
|