shadowsocks-rust 1.3.2

shadowsocks is a fast tunnel proxy that helps you bypass firewalls.
Documentation
[package]
name = "shadowsocks-rust"
version = "1.3.2"
authors = ["Y. T. CHUNG <zonyitoo@gmail.com>"]
description = "shadowsocks is a fast tunnel proxy that helps you bypass firewalls."
repository = "https://github.com/zonyitoo/shadowsocks-rust"
documentation = "https://docs.rs/shadowsocks-rust"
keywords = ["shadowsocks", "proxy", "socks", "socks5", "firewall"]
license = "MIT"

[features]
key-derive-argon2 = ["argon2rs"]

[lib]

name = "shadowsocks"

[[bin]]
name = "sslocal"
path = "src/bin/local.rs"

[[bin]]
name = "ssserver"
path = "src/bin/server.rs"

[[bin]]
name = "ssurl"
path = "src/bin/ssurl.rs"

[dependencies]
log = "0.3"
byteorder = "1.0"
rand = "0.3"
time = "0.1"
clap = "2"
qrcode = "0.2"
env_logger = "0.4"
rust-crypto = "0.2"
openssl = "0.9"
lru-cache = "0.1"
lru_time_cache = "0.6"
libc = "0.2"
futures = "0.1"
tokio-core = "0.1"
tokio-io = "0.1"
net2 = "0.2"
num_cpus = "1.1"
lazy_static = "0.2"
serde_json = "0.9"
base64 = "0.4"
domain = "0.2"
bytes = "0.4"

[dependencies.argon2rs]
version = "0.2"
optional = true