-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
62 lines (51 loc) · 1.56 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
61
62
[package]
name = "trawler"
version = "0.11.0-alpha.7"
authors = ["Jon Gjengset <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "A workload generator that emulates the traffic to lobste.rs"
repository = "https://github.com/jonhoo/trawler.git"
keywords = ["workload-generator", "traffic"]
categories = ["web-programming", "command-line-utilities", "development-tools::profiling", "simulation", "science"]
build = "data-import.rs"
[badges]
travis-ci = { repository = "jonhoo/trawler" }
maintenance = { status = "experimental" }
[features]
cli = ["clap", "hyper", "cookie", "http", "url", "regex", "lazy_static"]
default = ["cli"]
[dependencies]
crossbeam-channel = "0.5"
futures-core = "0.3.0"
futures-util = "0.3.0"
hdrhistogram = "7"
histogram-sampler = "0.5"
libc = "0.2"
rand = "0.8.0"
rand_distr = "0.4"
slog = "2.0.6"
slog-term = "2.0.1"
tokio = { version = "1", features = ["rt-multi-thread", "time"] }
tower-make = "0.3"
tower-service = "0.3"
zipf = "7"
time = "0.2"
clap = { version = "2.25.0", optional = true }
cookie = { version = "0.15", optional = true }
http = { version = "0.2", optional = true }
hyper = { version = "0.14", features = [ "client", "tcp", "http1", "http2", "stream" ], optional = true }
lazy_static = { version = "1.0.0", optional = true }
regex = { version = "1.0", optional = true }
url = { version = "2.0", optional = true }
[build-dependencies]
glob = "0.3"
[profile.release]
debug = true
[lib]
path = "src/lib.rs"
[[bin]]
name = "trawler"
path = "src/bin/main.rs"
required-features = ["cli"]