-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 889 Bytes
/
Cargo.toml
File metadata and controls
41 lines (35 loc) · 889 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 = "qtun"
version = "0.3.0"
authors = ["Max Lv <max.c.lv@gmail.com>"]
repository = "https://github.com/shadowsocks/qtun"
license = "MIT"
edition = "2021"
[[bin]]
name = "qtun-client"
path = "src/client.rs"
[[bin]]
name = "qtun-server"
path = "src/server.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["full"] }
bytes = "1"
futures = "0.3"
rustls = { version = "0.23", default-features = false, features = ["std"] }
rustls-pemfile = "2"
rustls-pki-types = "1"
webpki-roots = "1"
quinn = "0.11"
quinn-proto = "0.11"
clap = { version = "4", features = ["derive"] }
anyhow = "1"
tracing = "0.1"
log = "0.4"
env_logger = "0.11"
dirs = "6"
rustls-native-certs = "0.8"
[target.'cfg(target_os = "android")'.dependencies]
libc = "0.2"
[dev-dependencies]
serial_test = "3"