-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (39 loc) · 840 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
43
44
45
[package]
name = "rust-http-benchmarks"
version = "0.2.3"
authors = ["Jonathan Strong <[email protected]>"]
edition = "2018"
[lib]
name = "http_benchmarks"
path = "src/lib.rs"
[[bin]]
name = "server"
path = "src/server.rs"
[[bin]]
name = "client"
path = "src/client.rs"
[dependencies]
futures = "0.1.11"
tokio-core = "0.1.0"
tokio-io = "0.1"
tokio-proto = "0.1"
tokio-service = "0.1"
slog = "2"
slog-term = "2"
slog-async = "2"
clap = "2"
jetscii = "0.4.2"
itoa = "0.4"
atoi = "0.2.3"
chrono = { version = "0.4", features = [] }
hdrhistogram = "6"
dirs = "1"
pretty_toa = "1.0.0"
http = "0.1"
openssl = "0.10"
histlog = "0.1"
tokio-minihttp = { path = "tokio-minihttp" }
[features]
default = []
trace = ["slog/release_max_level_trace", "slog/max_level_trace"]
debug = ["slog/release_max_level_debug", "slog/max_level_debug"]