-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathCargo.toml
41 lines (33 loc) · 811 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
[package]
name = "miniproxy"
version = "0.1.0"
authors = ["importcjj <[email protected]>"]
edition = "2018"
[[bin]]
name = "minilocal"
path = "src/bin/local.rs"
[[bin]]
name = "miniserver"
path = "src/bin/server.rs"
[target.'cfg(not(windows))'.dependencies]
daemonize = "0.4.1"
[features]
default = ["gkd"]
[dependencies]
byteorder = "1.3.2"
httparse = "1.3.4"
serde = {version = "1.0.0", features=["derive"]}
serde_json = "1.0.0"
log = "0.4.0"
env_logger = "0.7.1"
clap = "2.33.0"
base64 = "0.11.0"
rand = "0.7.2"
# gkd = { version = "0.1.0", git = "https://github.com/importcjj/gkd-rs", optional = true}
gkd = { version = "0.1.0", path = "../gkd-rs", optional = true}
[dependencies.futures]
version = "0.3"
features = ["async-await"]
[dependencies.async-std]
version = "1.2"
features = ["unstable"]