-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (48 loc) · 1.31 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "hyperlane"
version = "3.6.9"
edition = "2021"
authors = ["ltpp-universe <[email protected]>"]
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]
async-func = "0.1.0"
clonelicious = "1.0.0"
color-output = "6.1.4"
file-operation = "0.3.0"
http-compress = "2.2.0"
http-request = "8.37.4"
hyperlane-log = "1.1.14"
hyperlane-time = "0.0.5"
lombok-macros = "1.7.0"
recoverable-spawn = "3.3.3"
recoverable-thread-pool = "2.0.4"
std-macro-extensions = "0.20.1"
tokio = { version = "1.43.0", features = ["full"] }
[profile.dev]
incremental = false
opt-level = 3
lto = true
panic = "unwind"
debug = false
codegen-units = 1
strip = "debuginfo"
backtrace = "off"
[profile.release]
incremental = false
opt-level = 3
lto = true
panic = "unwind"
debug = false
codegen-units = 1
strip = "debuginfo"
backtrace = "off"