summaryrefslogtreecommitdiffhomepage
path: root/tunnel-obfuscation/Cargo.toml
blob: 7af41b6fb22c9fcf51d2aa912d47bb5947a6c2a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "tunnel-obfuscation"
description = "Provides different types of obfuscation layers for WireGuard"
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true

[lints]
workspace = true

[dependencies]
futures = { workspace = true }
log = { workspace = true }
async-trait = "0.1"
thiserror = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "net", "io-util"] }
tokio-util = { workspace = true, features = ["rt"] }
udp-over-tcp = { git = "https://github.com/mullvad/udp-over-tcp", rev = "87936ac29b68b902565955f138ab02294bcc8593" }
shadowsocks = { workspace = true }
mullvad-masque-proxy = { path = "../mullvad-masque-proxy" }
talpid-types = { path = "../talpid-types" }
rand = { version = "0.8.5", features = ["small_rng"] }
socket2 = { workspace = true, features = ["all"] }

[target.'cfg(target_os="linux")'.dependencies]
nix = { workspace = true, features = ["socket"]}

[dev-dependencies]
criterion = { version = "0.7.0", features = ["html_reports", "async_tokio"] }
tokio = { workspace = true, features =  ["test-util"] }

[[bench]]
name = "lwo"
harness = false