-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
44 lines (38 loc) · 904 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
42
43
[package]
name = "gatekeeper"
version = "2.5.0"
repository = "https://github.com/Idein/gatekeeper"
authors = ["takayuki goto <[email protected]>"]
edition = "2021"
license-file = "LICENSE"
keywords = ["proxy", "socks"]
categories = ["network-programming"]
readme = "Readme.md"
description = "A SOCKS proxy implementation"
[lib]
name = "gatekeeper"
path = "src/lib.rs"
[[bin]]
name = "gatekeeperd"
path = "src/main.rs"
required-features = ["build-binary"]
[dependencies]
derive_more = "0.99"
failure = "0.1.6"
log = "0.4.6"
socket2 = "0.5"
env_logger = "0.11.6"
rand = "0.8"
regex = "1.5.5"
serde = { version = "1.0", features = ["derive"] }
serde_regex = "1.1"
serde_yaml = "0.8.26"
signal-hook = "0.3"
clap = { version = "4.1", features = ["derive"], optional = true }
nix = "0.26.4"
libc = "0.2.60"
[dev-dependencies]
socks = "0.3.2"
[features]
build-binary = ["clap"]
default = ["build-binary"]