-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
50 lines (45 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
[package]
name = "rsb"
version = "0.2.2"
edition = "2021"
authors = ["MichaelFu <michael.fudenglong@qq.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/gamelife1314/rsb"
repository = "https://github.com/gamelife1314/rsb"
keywords = ["rsb", "benchmark", "http"]
categories = ["command-line-utilities"]
description = "a http server benchmark tool, written in rust."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = {version = "1.0.71", features = ["backtrace", "std"]}
bytes = "1.4.0"
clap = { version = "4.3.19", features = ["derive", "cargo", "help", "string"] }
clap_complete = "4.3.1"
env_logger = "0.10.0"
log = "0.4.19"
mime_guess = "2.0.4"
reqwest = {version = "0.11.18", features = ["default-tls", "native-tls", "stream", "json", "multipart", "socks"]}
tokio = {version = "1.29.1", features = ["time", "rt", "rt-multi-thread", "sync", "signal"]}
tokio-util = {version = "0.7.8", features = ["codec"]}
governor = "0.6.0"
async-trait = "0.1.72"
num_cpus = "1.16.0"
num = "0.4.0"
indicatif = {version = "0.17.7", features = ["tokio"]}
serde_json = "1.0.103"
serde = {version = "1.0.189", features = ["derive"]}
colored = "2.0.4"
concolor-clap = "0.1.0"
rlimit = "0.10.1"
async-process = "1.7.0"
[target.'cfg(unix)'.dependencies]
openssl = { version = "0.10.57", features = ["vendored"] }
[[bin]]
name = "rsb"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"