hyperlane-quick-start 0.10.0

Hyperlane is a lightweight and high-performance Rust HTTP server library designed to simplify network service development. It supports HTTP request parsing, response building, TCP communication, and redirection features, making it ideal for building modern web services.
[[bin]]
name = "hyperlane-quick-start"
path = "src/main.rs"

[dependencies.hyperlane]
version = "4.5.2"

[package]
authors = ["ltpp-universe <root@ltpp.vip>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["network-programming", "web-programming"]
description = "Hyperlane is a lightweight and high-performance Rust HTTP server library designed to simplify network service development. It supports HTTP request parsing, response building, TCP communication, and redirection features, making it ideal for building modern web services."
edition = "2021"
exclude = ["target", "Cargo.lock", "logs", ".github", "**/*.pid", "**/*.log"]
keywords = ["http", "request", "response", "tcp", "redirect"]
license = "MIT"
name = "hyperlane-quick-start"
readme = "README.md"
repository = "https://github.com/ltpp-universe/hyperlane-quick-start.git"
version = "0.10.0"

[profile.dev]
codegen-units = 16
debug = 2
incremental = true
lto = false
opt-level = 1
panic = "unwind"
strip = "none"

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