[package]
edition = "2024"
name = "hyperlane"
version = "11.0.10"
authors = ["root@ltpp.vip"]
build = false
exclude = [
"target",
"Cargo.lock",
"sh",
".github",
"logs",
"img",
"**/*.log",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight, high-performance, and cross-platform Rust HTTP server library built on Tokio. It simplifies modern web service development by providing built-in support for middleware, WebSocket, Server-Sent Events (SSE), and raw TCP communication. With a unified and ergonomic API across Windows, Linux, and MacOS, it enables developers to build robust, scalable, and event-driven network applications with minimal overhead and maximum flexibility."
readme = "README.md"
keywords = [
"http",
"request",
"response",
"tcp",
"cross-platform",
]
categories = [
"network-programming",
"web-programming",
]
license = "MIT"
repository = "https://github.com/hyperlane-dev/hyperlane.git"
[lib]
name = "hyperlane"
path = "src/lib.rs"
[dependencies.http-type]
version = "8.2.7"
[dependencies.inventory]
version = "0.3.21"
[dependencies.lombok-macros]
version = "2.0.20"
[dependencies.regex]
version = "1.12.2"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[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"