mirror of
https://github.com/shadowsocks/shadowsocks-rust.git
synced 2026-02-09 01:59:16 +08:00
54 lines
984 B
TOML
54 lines
984 B
TOML
[package]
|
|
name = "shadowsocks-rust"
|
|
version = "1.2.0"
|
|
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"
|
|
libc = "0.2"
|
|
futures = "0.1"
|
|
tokio-core = "0.1"
|
|
net2 = "0.2"
|
|
num_cpus = "1.1"
|
|
lazy_static = "0.2"
|
|
serde_json = "0.9"
|
|
base64 = "0.4"
|
|
domain = "0.1"
|
|
|
|
[dependencies.argon2rs]
|
|
version = "0.2"
|
|
optional = true
|