mirror of
https://github.com/shadowsocks/shadowsocks-rust.git
synced 2026-02-09 01:59:16 +08:00
46 lines
716 B
TOML
46 lines
716 B
TOML
[package]
|
|
|
|
name = "shadowsocks-rust"
|
|
version = "0.0.1"
|
|
authors = ["Y. T. Chung <zonyitoo@gmail.com>"]
|
|
|
|
[lib]
|
|
|
|
name = "shadowsocks"
|
|
|
|
[features]
|
|
default = [
|
|
"cipher-aes-cfb",
|
|
"cipher-aes-ofb",
|
|
"cipher-bf-cfb",
|
|
"cipher-cast5-cfb",
|
|
"cipher-des-cfb",
|
|
"cipher-rc2-cfb",
|
|
]
|
|
|
|
cipher-aes-cfb = []
|
|
cipher-aes-ofb = []
|
|
cipher-aes-ctr = []
|
|
cipher-bf-cfb = []
|
|
cipher-camellia-cfb = []
|
|
cipher-cast5-cfb = []
|
|
cipher-des-cfb = []
|
|
cipher-idea-cfb = []
|
|
cipher-rc2-cfb = []
|
|
cipher-rc4-hmac-md5 = []
|
|
cipher-seed-cfb = []
|
|
|
|
[[bin]]
|
|
|
|
name = "sslocal"
|
|
path = "src/bin/local.rs"
|
|
|
|
[[bin]]
|
|
|
|
name = "ssserver"
|
|
path = "src/bin/server.rs"
|
|
|
|
# [dependencies.rust-crypto]
|
|
|
|
# git = "https://github.com/DaGenix/rust-crypto.git"
|