-
Notifications
You must be signed in to change notification settings - Fork 389
/
Copy pathCargo.toml
63 lines (57 loc) · 1.33 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[workspace.package]
authors = ["Mullvad VPN"]
repository = "https://github.com/mullvad/mullvadvpn-app/"
license = "GPL-3.0"
edition = "2021"
rust-version = "1.75.0"
[workspace]
resolver = "2"
members = [
"test-manager",
"test-runner",
"test-rpc",
"socks-server",
"connection-checker",
]
[workspace.lints.rust]
rust_2018_idioms = "deny"
[workspace.lints.clippy]
unused_async = "deny"
[workspace.dependencies]
futures = "0.3"
tokio = { version = "1.8", features = [
"macros",
"rt",
"process",
"time",
"fs",
"io-util",
"rt-multi-thread",
] }
tokio-serial = "5.4.1"
# Serde and related crates
serde = "1.0"
serde_json = "1.0"
tokio-serde = { version = "0.8.0", features = ["json"] }
# Tonic and related crates
tonic = "0.10.0"
tonic-build = { version = "0.10.0", default-features = false }
tower = "0.4"
prost = "0.12.0"
prost-types = "0.12.0"
tarpc = { version = "0.30", features = ["tokio1", "serde-transport", "serde1"] }
# Logging
env_logger = "0.10.0"
thiserror = "1.0.57"
log = "0.4"
colored = "2.0.0"
# Proxy protocols
shadowsocks = { version = "1.16" }
shadowsocks-service = { version = "1.16" }
windows-sys = "0.48.0"
chrono = { version = "0.4.26", default-features = false }
clap = { version = "4.2.7", features = ["cargo", "derive"] }
once_cell = "1.16.0"
bytes = "1.3.0"
async-trait = "0.1.58"
surge-ping = "0.8"