[package]
edition = "2024"
name = "web_frameworks_rust_hyperlane_server"
version = "0.1.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 = "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",
"redirect",
]
categories = [
"network-programming",
"web-programming",
]
license = "MIT"
repository = "https://github.com/hyperlane-dev/hyperlane.git"
[[bin]]
name = "web_frameworks_rust_hyperlane_server"
path = "src/main.rs"
[dependencies.hyperlane]
version = "14.1.3"
[profile.dev]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
panic = "abort"
incremental = false
strip = "debuginfo"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
rpath = false
panic = "abort"
overflow-checks = false
incremental = false
strip = "debuginfo"