forked from glacierx/rproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (30 loc) · 888 Bytes
/
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
[package]
name = "rproxy-api"
version = "0.0.1"
edition = "2021"
authors = ["touka shiro / max3584 <max3584.work@gmail.com>"]
description = "Platform independent asynchronous UDP/TCP proxy"
homepage = "https://github.com/max3584/rproxy-api"
repository = "https://github.com/max3584/rproxy-api"
fork_repositry = "https://github.com/glacierx/rproxy"
readme = "README.md"
keywords = ["proxy", "TCP", "UDP", "async","openvpn"]
categories = ["command-line-utilities", "network-programming"]
license = "MIT"
exclude = [
".gitignore",
"Cargo.toml.orig",
"Cargo.lock",
]
[dependencies]
tokio = { version = "1.39.2", features = ["full"] }
log = "0.4.22"
env_logger = "0.11.5"
chrono = "0.4.38"
async-trait = "0.1.81"
sqlx = { version = "0.8.0", features = ["runtime-tokio", "mysql"] }
serde = "1.0.207"
serde_json = "1.0.124"
argh = "0.1.12"
futures-util = "0.3.30"
futures = "0.3.30"