-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (44 loc) · 1.07 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (44 loc) · 1.07 KB
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
50
51
52
53
54
[package]
name = "wireguard-netstack"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
description = "Userspace WireGuard tunnel with TCP/IP network stack"
keywords = ["wireguard", "vpn", "tunnel", "networking", "tcp"]
categories = ["network-programming", "asynchronous"]
[dependencies]
# WireGuard implementation
gotatun = "0.2"
# Userspace TCP/IP stack
smoltcp = { version = "0.12", default-features = false, features = [
"medium-ip",
"proto-ipv4",
"socket-tcp",
"std",
"log",
] }
# Async runtime
tokio.workspace = true
# TLS (for DoH)
tokio-rustls.workspace = true
rustls.workspace = true
webpki-roots.workspace = true
# Error handling
thiserror.workspace = true
# Utilities
bytes.workspace = true
parking_lot.workspace = true
rand.workspace = true
base64.workspace = true
log.workspace = true
# Config parsing
serde = { version = "1", features = ["derive"] }
serde_ini = "0.2"
# IP address handling
ipnet = "2"
# Socket options
socket2 = "0.6"
# For zerocopy traits
zerocopy = "0.8"