-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 764 Bytes
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 764 Bytes
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
[package]
name = "vtun-ng"
version = "3.1.1"
edition = "2021"
[[bin]]
name = "vtunngd"
path = "src/main.rs"
[features]
default = ["lzo", "zlib"]
lzo=["dep:rust-lzo"]
zlib=["dep:flate2"]
[dependencies]
libc = "0.2"
md5 = "0.8.0"
blowfish = "0.9.1"
ecb = "0.1.2"
cipher = "0.4.4"
rust-lzo = { version = "0.6.2", optional = true }
flate2 = { version = "1.1.2", optional = true }
signal-hook = "0.3.18"
time = { version = "0.3.47", features = ["macros", "formatting"] }
errno = "0.3.13"
dns-lookup = "2.0.4"
logos = "0.15.0"
proctitle = "0.1.1"
getopts = "0.2.23"
rand = "0.9.2"
aes = "0.8.4"
cbc = "0.1.2"
cfb-mode = "0.8.2"
ofb = "0.6.1"
getrandom = "0.3.3"
sha2 = "0.10.9"
uzers = "0.12.1"
aes-gcm = "0.10.3"
aes-gcm-siv = "0.11.1"
chacha20poly1305 = "0.10.1"