-
Notifications
You must be signed in to change notification settings - Fork 71
/
Cargo.toml
62 lines (59 loc) · 1.39 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 = "goose"
version = "0.17.3-dev"
authors = ["Jeremy Andrews <[email protected]>"]
edition = "2018"
description = "A load testing framework inspired by Locust."
homepage = "https://tag1.com/goose"
documentation = "https://book.goose.rs"
repository = "https://github.com/tag1consulting/goose"
readme = "README.md"
keywords = ["loadtesting", "performance", "web", "framework", "tool"]
license = "Apache-2.0"
[dependencies]
async-trait = "0.1"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
ctrlc = "3"
downcast-rs = "1.2"
flume = "0.11"
futures = "0.3"
gumdrop = "0.8"
http = "1.1"
itertools = "0.12"
lazy_static = "1.4"
log = "0.4"
num-format = "0.4"
rand = "0.8"
regex = "1"
reqwest = { version = "0.12", default-features = false, features = [
"cookies",
"gzip",
"json",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
simplelog = "0.12"
strum = "0.26"
strum_macros = "0.26"
tokio = { version = "1", features = [
"fs",
"io-util",
"macros",
"net",
"rt-multi-thread",
"time",
"sync",
] }
tokio-tungstenite = "0.21"
tungstenite = "0.21"
url = "2"
[features]
default = ["reqwest/default-tls"]
rustls-tls = ["reqwest/rustls-tls", "tokio-tungstenite/rustls"]
gaggle = []
[dev-dependencies]
httpmock = "0.6"
native-tls = "0.2"
nix = { version = "0.27", features = ["signal"] }
rustls = "0.22"
serial_test = "2.0"