forked from tag1consulting/goose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 1.01 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
[package]
name = "goose"
version = "0.8.1"
authors = ["Jeremy Andrews <[email protected]>"]
edition = "2018"
description = "A load testing tool inspired by Locust."
homepage = "https://tag1.com/goose"
documentation = "https://docs.rs/goose/"
repository = "https://github.com/tag1consulting/goose"
readme = "README.md"
keywords = ["loadtesting", "performance", "web", "framework", "tool"]
license = "Apache-2.0"
[dependencies]
ctrlc = "3.1"
futures = "0.3"
http = "0.2"
itertools = "0.9"
lazy_static = "1.4"
log = "0.4"
num_cpus = "1.0"
num-format = "0.4"
rand = "0.7"
regex = "1"
reqwest = { version = "0.10", features = ["cookies", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_cbor = "0.11"
serde_json = "1.0"
simplelog = "0.7"
structopt = "0.3"
tokio = { version = "0.2.20", features = ["fs", "io-util", "macros", "rt-core", "sync", "time"] }
url = "2.1"
# optional dependencies
nng = { version = "0.5", optional = true }
[features]
gaggle = ["nng"]
[dev-dependencies]
httpmock = "0.3"
mockito = "0.25"