forked from ynuwenhof/koblas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (34 loc) · 847 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
32
33
34
35
36
37
38
39
40
41
[package]
name = "koblas"
version = "0.1.1"
edition = "2021"
description = "Lightweight SOCKS5 proxy server"
readme = "README.md"
homepage = "https://github.com/ynuwenhof/koblas"
repository = "https://github.com/ynuwenhof/koblas"
license = "MIT OR Apache-2.0"
keywords = ["proxy", "socks", "server"]
[dependencies]
color-eyre = "0.6.2"
itertools = "0.10.5"
toml = "0.7.4"
tracing = "0.1.37"
tracing-error = "0.2.0"
[dependencies.argon2]
version = "0.5.0"
features = ["std"]
[dependencies.clap]
version = "4.3.4"
features = ["derive", "env"]
[dependencies.rand_core]
version = "0.6.4"
features = ["std"]
[dependencies.serde]
version = "1.0.164"
features = ["derive"]
[dependencies.tokio]
version = "1.28.2"
features = ["fs", "net", "io-util", "rt-multi-thread"]
[dependencies.tracing-subscriber]
version = "0.3.17"
features = ["env-filter"]