-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (53 loc) · 1.47 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
52
53
54
55
56
57
58
59
60
[package]
name = "oha"
version = "0.5.0"
authors = ["hatoo <[email protected]>"]
edition = "2021"
description = "Ohayou(おはよう), HTTP load generator, inspired by rakyll/hey with tui animation."
repository = "https://github.com/hatoo/oha"
readme = "README.md"
keywords = ["cli", "load-testing", "performance", "http"]
categories = ["command-line-utilities", "network-programming", "web-programming::http-client", "development-tools::profiling"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "3.1.6", features = ["derive"] }
tokio = { version = "1.17.0", features = ["full"] }
anyhow = "1.0.56"
thiserror = "1.0.30"
futures = "0.3.21"
average = "0.13.1"
float-ord = "0.3.2"
byte-unit = "4.0.14"
tui = { version = "0.17.0", default-features = false, features = ["crossterm"] }
crossterm = "0.23.1"
libc = "0.2.119"
flume = "0.10"
humantime = "2.1.0"
hyper = { version = "0.14.17", features = ["full"] }
http = "0.2"
native-tls = "0.2.8"
tokio-native-tls = "0.3.0"
rand = "0.8"
trust-dns-resolver = "0.21.1"
base64 = "0.13"
lazy_static = "1.4.0"
[target.'cfg(unix)'.dependencies]
rlimit = "0.7.0"
[dev-dependencies]
assert_cmd = "2.0.4"
warp = "0.3"
get-port = "4.0.0"
lazy_static = "1.4.0"
bytes = "1.1"
http = "0.2"
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks =false
lto = "fat"
incremental = false
codegen-units = 1
panic = "abort"
rpath = false