forked from brayniac/rpc-perf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (47 loc) · 1.05 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 = "rpc-perf"
version = "4.0.0-alpha.0"
authors = ["Brian Martin <[email protected]>"]
edition = "2021"
description = "RPC Performance Testing"
homepage = "https://github.com/iopsystems/rpc-perf"
repository = "https://github.com/iopsystems/rpc-perf"
license = "Apache-2.0"
[[bin]]
name = "rpc-perf"
path = "src/main.rs"
[[bin]]
name = "rpc-replay"
path = "src/replay.rs"
[dependencies]
backtrace = "0.3.66"
boring = "2.0.0"
chrono = "0.4.22"
clap = "3.2.20"
clocksource = "0.6.0"
crc = "3.0.0"
heatmap = "0.7.2"
json = "0.12.4"
metriken = "0.1.0"
mio = { version = "0.8.4", features = ["os-poll", "net"] }
mpmc = "0.1.6"
rand = { version = "0.8.5", features = ["small_rng"] }
rand_xoshiro = { version = "0.6.0" }
rand_distr = "0.4.3"
ratelimit = "0.5.1"
ringlog = "0.1.0"
rtrb = "0.2.2"
serde = "1.0.144"
serde_derive = "1.0.144"
serde_json = "1.0.85"
slab = "0.4.7"
strum = "0.24.1"
strum_macros = "0.24.3"
sysconf = "0.3.4"
thiserror = "1.0.34"
tiny_http = "0.11.0"
toml = "0.5.9"
waterfall = "0.8.0"
zipf = "7.0.0"
zookeeper = "0.6.1"
zstd = "0.11.2"