[package] name = "hyperlane" version = "2.41.0" edition = "2021" authors = ["ltpp-universe "] license = "MIT" 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.""" keywords = ["http", "request", "response", "tcp", "redirect"] repository = "https://github.com/ltpp-universe/hyperlane.git" categories = ["network-programming", "web-programming"] exclude = [ "target", "Cargo.lock", "sh", ".github" ] [dependencies] color-output = "6.1.4" http-request = "8.34.0" http-type = "2.27.0" hyperlane-log = "0.24.0" hyperlane-time = "0.0.2" lombok-macros = "1.7.0" std-macro-extensions = "0.18.0" [profile.dev] incremental = true opt-level = 3 lto = true panic = "abort" [profile.release] opt-level = 3 lto = true panic = "abort"