-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (40 loc) · 1004 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
38
39
40
41
42
[package]
name = "loadTesting"
version = "0.0.9"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "kt"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.95"
tokio = { version = "1.43.0", features = ["full"] }
clap = { version = "4.5.26", features = ["derive"] }
log = "0.4.25"
env_logger = "0.11.6"
hyper = { version = "1.5.2", features = ["full"] }
hyper-util = { version = "0.1.10", features = ["full"] }
http-body-util = { version = "0.1.2" }
futures = "0.3.31"
mlua = { version = "0.10.2", features = [
"lua54",
"vendored",
"async",
"macros",
] }
hyper-rustls = { version = "0.27.5", default-features = false, features = [
"logging",
"ring",
"tls12",
"http1",
"http2",
] }
rustls = { version = "0.23.21", default-features = false, features = [
"logging",
"ring",
"tls12",
] }
itertools = "0.14.0"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
webpki-roots = "0.26.7"