-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (55 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
59 lines (55 loc) · 1.38 KB
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
52
53
54
55
56
57
58
59
[package]
name = "harbr_router"
description = "A modular reverse proxy service written in Rust, designed for high performance and flexibility."
license = "Apache-2.0"
version = "0.2.0"
edition = "2021"
[lib]
name = "harbr_router"
path = "src/lib.rs"
[[bin]]
name = "harbr-router"
path = "src/main.rs"
[dependencies]
tokio = { version = "1.28", features = ["full"] }
hyper = { version = "0.14", features = ["full", "server", "client", "http1", "http2", "tcp"] }
tower = "0.4"
tower-http = { version = "0.4", features = ["trace"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
metrics = "0.21"
metrics-exporter-prometheus = "0.12"
anyhow = "1.0"
futures-util = "0.3"
dashmap = "5.4"
bytes = "1.4"
warp = "0.3.7"
uuid = { version = "1.2", features = ["v4"] }
clap = { version = "4.0", features = ["derive"] }
reqwest = { version = "0.12.15", features = ["json"] }
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
serde_json = "1.0"
toml = "0.8"
crossbeam = "0.8"
crossbeam-queue = "0.3"
parking_lot = "0.12"
once_cell = "1.19"
pin-project = "1.1"
smallvec = "1.11"
arrayvec = "0.7"
ahash = "0.8"
memmap2 = "0.9"
libc = "0.2"
num_cpus = "1.16"
hyper-rustls = "0.24"
fastrand = "2.0"
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
opt-level = 3
debug = false
strip = true