-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
49 lines (44 loc) · 1.02 KB
/
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
44
45
46
47
48
49
[package]
name = "shadowsocks"
version = "0.6.2"
authors = ["loggerhead <[email protected]>"]
license = "GPL-3.0"
repository = "https://github.com/loggerhead/shadowsocks-rust"
homepage = "https://github.com/loggerhead/shadowsocks-rust"
description = """
My implemention of shadowsocks
"""
readme = "README.md"
[[bin]]
name = "sslocal"
path = "src/bin/main.rs"
required-features = ["sslocal"]
[[bin]]
name = "ssserver"
path = "src/bin/main.rs"
[dependencies]
mio = "0.5"
slog = { version = "~1.7", features = ["max_level_trace", "release_max_level_trace"] }
slog-term = "~1.3"
slog-stream = "~1.2"
slog-scope = "0.2"
fnv = "~1.0"
clap = "~2.18"
rand = "0.3"
toml = "0.1"
regex = "0.1"
chrono = "0.2"
try_opt = "0.1"
byteorder = "0.5"
lazy_static = "0.2"
lru_time_cache = "0.5"
rust-crypto = "0.2"
rustc-serialize = "0.3"
openssl = { version = "0.9", optional = true }
clippy = { version = ">= 0.0.95", optional = true }
[features]
sslocal = []
disable-encrypt = []
[target.'cfg(unix)'.dependencies]
sig = "~1.0.0"
daemonize = "0.2"