[package]
edition = "2024"
name = "hyperlane_techempower"
version = "0.1.4"
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"
[features]
dev = []
[[bin]]
name = "hyperlane_techempower"
path = "src/main.rs"
[dependencies.futures]
version = "0.3.31"
[dependencies.hyperlane]
version = "14.1.1"
[dependencies.hyperlane-time]
version = "0.7.22"
[dependencies.num_cpus]
version = "1.17.0"
[dependencies.once_cell]
version = "1.21.3"
[dependencies.rand]
version = "0.9.2"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.sqlx]
version = "0.8.6"
features = [
"runtime-tokio",
"postgres",
]
[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
rpath = false
panic = "unwind"
overflow-checks = false
incremental = false
strip = "debuginfo"