goose 0.11.1

A load testing framework inspired by Locust.
Documentation
[package]
name = "goose"
version = "0.11.1"
authors = ["Jeremy Andrews <jeremy@tag1consulting.com>"]
edition = "2018"
description = "A load testing framework 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]
chrono = "0.4"
ctrlc = "3.1"
flume = "0.10"
futures = "0.3"
gumdrop = "0.8"
http = "0.2"
itertools = "0.10"
lazy_static = "1.4"
log = "0.4"
num_cpus = "1.0"
num-format = "0.4"
rand = "0.8"
regex = "1"
reqwest = { version = "0.11",  default-features = false, features = ["cookies", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_cbor = "0.11"
serde_json = "1.0"
simplelog = "0.10"
tokio = { version = "1", features = ["fs", "io-util", "macros", "rt-multi-thread", "time"] }
url = "2"

# optional dependencies
nng = { version = "1.0", optional = true }

[features]
default = ["reqwest/default-tls"]
gaggle = ["nng"]
rustls = ["reqwest/rustls-tls"]

[build-dependencies]
rustc_version = "0.3"

[dev-dependencies]
httpmock = "0.5"
serial_test = "0.5"