81c692d305
* wip * Use common interface request response * wip: extract crates * wip * new structure compiles * Create tun_common subdir * Comment out return_mix_delays for now * Remove unused boringtun dependency * Revert to previous packet encoding * Allow dead code on non-linux * Add new function
25 lines
683 B
TOML
25 lines
683 B
TOML
[package]
|
|
name = "nym-tun"
|
|
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]
|
|
thiserror.workspace = true
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "net", "io-util", "time", "sync", "macros"] }
|
|
etherparse = "0.13.0"
|
|
log.workspace = true
|
|
nym-wireguard-types = { path = "../wireguard-types", optional = true }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
tokio-tun = "0.9.0"
|
|
|
|
[features]
|
|
wireguard = ["nym-wireguard-types"]
|