eggress-protocol-shadowsocks 1.0.4

Shadowsocks protocol implementation for eggress
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.85"
name = "eggress-protocol-shadowsocks"
version = "1.0.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shadowsocks protocol implementation for eggress"
readme = "README.md"
keywords = [
    "proxy",
    "shadowsocks",
    "aead",
    "cipher",
]
categories = [
    "network-programming",
    "cryptography",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/eggstack/eggress"

[features]
default = []
legacy-crypto = [
    "dep:aes",
    "dep:blowfish",
    "dep:camellia",
    "dep:chacha20",
    "dep:des",
    "dep:hmac",
    "dep:salsa20",
]
pproxy-legacy = ["dep:flate2"]

[lib]
name = "eggress_protocol_shadowsocks"
path = "src/lib.rs"

[[test]]
name = "fuzz_smoke"
path = "tests/fuzz_smoke.rs"

[[test]]
name = "zz_debug_ssserver_interaction"
path = "tests/zz_debug_ssserver_interaction.rs"

[dependencies.aes]
version = "0.8"
optional = true

[dependencies.aes-gcm]
version = "0.10"

[dependencies.blowfish]
version = "0.10"
optional = true

[dependencies.bytes]
version = "1"

[dependencies.camellia]
version = "0.1"
optional = true

[dependencies.chacha20]
version = "0.9"
optional = true

[dependencies.chacha20poly1305]
version = "0.10"

[dependencies.des]
version = "0.8"
optional = true

[dependencies.eggress-core]
version = "=1.0.4"

[dependencies.eggress-uri]
version = "=1.0.4"

[dependencies.flate2]
version = "1"
optional = true

[dependencies.hkdf]
version = "0.12"

[dependencies.hmac]
version = "0.12"
optional = true

[dependencies.md-5]
version = "0.10"

[dependencies.rand]
version = "0.8"

[dependencies.salsa20]
version = "0.11"
optional = true

[dependencies.sha1]
version = "0.10"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "rt",
    "rt-multi-thread",
    "macros",
    "net",
    "io-util",
    "sync",
    "time",
    "signal",
    "fs",
]

[dependencies.tracing]
version = "0.1"

[dependencies.zeroize]
version = "1"

[dev-dependencies.eggress-testkit]
version = "=1.0.4"

[dev-dependencies.tokio]
version = "1"
features = [
    "rt",
    "rt-multi-thread",
    "macros",
    "net",
    "io-util",
    "sync",
    "time",
    "signal",
    "fs",
]

[lints.clippy.all]
level = "warn"
priority = -1

[lints.rust]
unsafe_code = "deny"