kcptun-rust 1.1.0

A Rust implementation of kcptun, a fast and reliable tunnel based on KCP protocol
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"
name = "kcptun-rust"
version = "1.1.0"
authors = ["huwenhai <25935317@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of kcptun, a fast and reliable tunnel based on KCP protocol"
readme = "README.md"
keywords = [
    "kcptun",
    "kcp",
    "tunnel",
    "vpn",
    "network",
]
categories = [
    "network-programming",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/hushuoyouli/kcptun-rust"

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

[[bin]]
name = "kcptun-client"
path = "src/bin/kcptun_client.rs"

[[bin]]
name = "kcptun-server"
path = "src/bin/kcptun_server.rs"

[[example]]
name = "simple_kcp_server"
path = "examples/simple_kcp_server.rs"

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

[dependencies.aes]
version = "0.8"

[dependencies.anyhow]
version = "1"

[dependencies.cipher]
version = "0.4"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.hmac]
version = "0.12"

[dependencies.num-bigint]
version = "0.4"

[dependencies.num-traits]
version = "0.2"

[dependencies.pbkdf2]
version = "0.12"

[dependencies.rust_tokio_kcp]
version = "0.2.5"
features = [
    "aes",
    "tea",
    "xtea",
    "simple_xor",
    "blowfish",
    "cast5",
    "triple_des",
    "twofish",
    "salsa20",
    "sm4",
    "aes-gcm",
]

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.sha1]
version = "0.10"

[dependencies.sha2]
version = "0.10"

[dependencies.smux_rust]
version = "0.2.1"

[dependencies.snap]
version = "1"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.tokio-snappy]
version = "0.2.0"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]