tun2proxy/Cargo.toml

44 lines
1.2 KiB
TOML
Raw Normal View History

2021-09-02 11:30:23 +02:00
[package]
2022-08-01 14:36:58 +00:00
name = "tun2proxy"
2024-02-01 22:12:31 +08:00
version = "0.2.3"
2024-02-01 19:15:32 +08:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2021-09-02 11:30:23 +02:00
2023-04-10 21:37:20 +02:00
[lib]
2024-02-01 19:15:32 +08:00
crate-type = ["staticlib", "cdylib", "lib"]
2023-04-10 21:37:20 +02:00
2021-09-02 11:30:23 +02:00
[dependencies]
2024-02-01 19:15:32 +08:00
async-recursion = "1.0"
async-trait = "0.1"
2023-03-22 10:12:32 +01:00
base64 = { version = "0.21" }
2024-02-01 19:15:32 +08:00
chrono = "0.4"
clap = { version = "4.4", features = ["derive", "wrap_help", "color"] }
ctrlc2 = { version = "3.5", features = ["tokio", "termination"] }
2023-08-23 14:06:02 +08:00
digest_auth = "0.3"
2023-03-23 13:28:05 +01:00
dotenvy = "0.15"
2024-02-01 19:15:32 +08:00
env_logger = "0.11"
2024-01-12 23:54:17 +08:00
hashlink = "0.9"
2023-08-23 14:06:02 +08:00
httparse = "1.8"
2024-02-01 19:15:32 +08:00
ipstack = { version = "0.0", features = ["log"] }
log = { version = "0.4", features = ["std"] }
socks5-impl = { version = "0.5" }
thiserror = "1.0"
2024-02-01 19:15:32 +08:00
tokio = { version = "1.35", features = ["full"] }
tproxy-config = { version = "0.1", features = ["log"] }
2023-08-23 14:06:02 +08:00
trust-dns-proto = "0.23"
2024-02-01 19:15:32 +08:00
tun2 = { version = "1.0", features = ["async"] }
udp-stream = { version = "0.0", default-features = false }
2023-08-23 14:06:02 +08:00
unicase = "2.7"
2023-12-25 23:10:13 +08:00
url = "2.5"
2023-03-20 23:52:38 +01:00
2023-04-14 18:44:41 +08:00
[target.'cfg(target_os="android")'.dependencies]
android_logger = "0.13"
jni = { version = "0.21", default-features = false }
2023-10-23 09:44:27 +08:00
[build-dependencies]
serde_json = "1.0"
2024-02-01 19:15:32 +08:00
[[bin]]
name = "tun2proxy"
path = "src/bin/main.rs"