tcplane 5.0.4

tcplane is a lightweight and high-performance Rust TCP server library designed to simplify network service development. It supports TCP communication, data stream management, and connection handling, focusing on providing efficient low-level network connections and data transmission capabilities, making it ideal for building modern network services.
Documentation
[dependencies.tokio]
features = ["full"]
version = "1.48.0"

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

[package]
authors = ["root@ltpp.vip"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["network-programming", "web-programming"]
description = "tcplane is a lightweight and high-performance Rust TCP server library designed to simplify network service development. It supports TCP communication, data stream management, and connection handling, focusing on providing efficient low-level network connections and data transmission capabilities, making it ideal for building modern network services."
edition = "2024"
exclude = ["target", "Cargo.lock", "sh", ".github", "logs", "**/*.log"]
keywords = ["http", "request", "response", "tcp", "redirect"]
license = "MIT"
name = "tcplane"
readme = "README.md"
repository = "https://github.com/crates-dev/tcplane.git"
version = "5.0.4"

[profile.dev]
codegen-units = 1
debug = 0
incremental = false
lto = true
opt-level = 3
panic = "unwind"
strip = "debuginfo"

[profile.release]
codegen-units = 1
debug = 0
incremental = false
lto = true
opt-level = 3
panic = "unwind"
strip = "debuginfo"