mirror of
https://github.com/shadowsocks/shadowsocks-rust.git
synced 2026-02-09 01:59:16 +08:00
73 lines
1.5 KiB
TOML
73 lines
1.5 KiB
TOML
[package]
|
|
name = "shadowsocks-rust"
|
|
version = "1.7.0-alpha.8"
|
|
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"
|
|
|
|
[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"
|
|
|
|
[[bin]]
|
|
name = "ssdns"
|
|
path = "src/bin/ssdns.rs"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
|
|
[features]
|
|
default = ["sodium"]
|
|
sodium = ["libsodium-ffi"]
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
byteorder = "1.2"
|
|
rand = "0.5"
|
|
time = "0.1"
|
|
clap = "2"
|
|
env_logger = "0.5"
|
|
openssl = "0.10"
|
|
libc = "0.2"
|
|
futures = "0.1"
|
|
tokio-io = "0.1"
|
|
tokio = "0.1"
|
|
lazy_static = "1.0"
|
|
serde_json = "1.0"
|
|
base64 = "0.9"
|
|
bytes = "0.4"
|
|
ring = "0.12"
|
|
md-5 = "0.7"
|
|
digest = "0.7"
|
|
typenum = "1.10"
|
|
qrcode = { version = "0.7", default-features = false }
|
|
subprocess = "0.1"
|
|
serde_urlencoded = "0.5"
|
|
url = "1"
|
|
byte_string = "1.0"
|
|
libsodium-ffi = { version = "0.1", optional = true }
|
|
miscreant = { version = "0.3", optional = true }
|
|
lru-cache = "0.1"
|
|
dns-parser = "0.7"
|
|
trust-dns-resolver = { git = "https://github.com/bluejekyll/trust-dns", features = ["dns-over-rustls"] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
tokio-signal = "0.2"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
tokio-signal = "0.2"
|