[package]
edition = "2024"
name = "tcplane"
version = "8.0.0"
authors = ["root@ltpp.vip"]
build = false
exclude = [
"target",
"Cargo.lock",
"sh",
".github",
"logs",
"**/*.log",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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."
readme = "README.md"
keywords = [
"http",
"request",
"response",
"tcp",
"redirect",
]
categories = [
"network-programming",
"web-programming",
]
license = "MIT"
repository = "https://github.com/crates-dev/tcplane.git"
[lib]
name = "tcplane"
path = "src/lib.rs"
[dependencies.tokio]
version = "1.49.0"
features = ["full"]
[profile.dev]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
panic = "unwind"
incremental = false
strip = "debuginfo"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
panic = "unwind"
incremental = false
strip = "debuginfo"