-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
49 lines (46 loc) · 1.05 KB
/
Cargo.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "wg-rs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = [
"full",
] }
libc = "0.2"
futures = { version = "0.3.0", features = [
"async-await",
] }
tokio-util = { version = "0.7", features = [
"codec",
] }
bytes = "1"
futures-util = { version = "0.3", features = [
"sink",
] }
thiserror = "1"
ip_network = "0.4"
ip_network_table = "0.2"
ring = "0.16"
x25519-dalek = { version = "=2.0.0-rc.3", features = [
"reusable_secrets",
"static_secrets",
] }
base64 = "0.21"
rand_core = { version = "0.6.3", features = [
"getrandom",
] }
# boringtun = { git = "https://github.com/lz1998/boringtun.git", branch = "master" }
# boringtun = { path = "../boringtun/boringtun" }
dashmap = "5.2"
tracing = "0.1"
socket2 = { version = "0.5", features = [
"all",
] }
chacha20poly1305 = "0.10.0-pre.1"
aead = "0.5.0-pre.2"
blake2 = "0.10"
parking_lot = "0.12"
hmac = "0.12"
[dev-dependencies]
etherparse = "0.13"