Files
v2ray-proxy/Cargo.toml

24 lines
600 B
TOML
Raw Permalink Normal View History

2023-10-06 18:16:44 +03:30
[package]
name = "v2parser"
2025-11-29 01:47:15 +02:00
version = "0.4.0"
edition = "2024"
2023-10-06 18:16:44 +03:30
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2025-07-27 12:21:49 +03:30
base64 = "0.22.1"
2023-10-24 17:00:00 +03:30
clap = { version = "4.4.6", features = ["derive"] }
2025-07-10 20:43:48 +03:30
http = "1.3.1"
2023-10-10 16:21:20 +03:30
querystring = "1.1.0"
2023-10-08 21:11:49 +03:30
regex = "1.9.6"
2023-10-16 19:04:37 +03:30
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
2025-06-25 02:01:29 +03:30
urlencoding = "2"
tokio = { version = "1.0", features = ["full"] }
2025-11-29 01:47:15 +02:00
tempfile = "3"
[target.'cfg(unix)'.dependencies]
signal-hook = "0.3"
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
futures = "0.3"