-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (34 loc) · 895 Bytes
/
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
[package]
name = "http-request-duplicator"
version = "0.4.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-channel = "2.3.1"
axum = { version = "0.7.5", features = ["tracing"] }
bytes = "1.6.0"
clap = { version = "4.5.4", features = ["derive", "env"] }
hyper = "1.0.0"
itertools = "0.13.0"
rand = "0.8.5"
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1.0.116"
tap = "1.0.1"
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread", "sync", "time"] }
tracing = "0.1.40"
tracing-log = "0.2.0"
tracing-subscriber = "0.3.18"
ulid = "1.1.2"
h2 = "0.4.5"
hickory-resolver = "0.24.1"
tokio-rustls = "0.26.0"
webpki-roots = "0.26.3"
anyhow = "1.0.86"
http = "1.1.0"
url = "2.5.2"
[profile.release]
#opt-level = "z"
#debug = false
#lto = true
#strip = true
#codegen-units = 1