-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (57 loc) · 1.85 KB
/
Copy pathCargo.toml
File metadata and controls
62 lines (57 loc) · 1.85 KB
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 = "driller"
version = "0.13.0"
authors = ["Ferran Basora <fcsonline@gmail.com>", "Andreas Kapp <zoosky@gmail.com>"]
description = "A clean HTTP load-test drill. Ansible-style YAML plans, Rust runtime, RPS and percentiles per run -- no fancy bits."
repository = "https://github.com/zoosky/driller"
keywords = ["http", "load-testing", "performance", "ansible", "jmeter"]
categories = ["web-programming"]
license = "GPL-3.0-only"
edition = "2024"
rust-version = "1.95"
exclude = [
".github/",
".gitignore",
".rustfmt.toml",
"example/server/",
]
# Combined library + binary package. The library (`src/lib.rs`) is the reusable
# load-testing engine; the binary (`src/main.rs`) is the CLI shell that drives
# it. Targets are declared explicitly so the boundary and binary name are
# unambiguous and so integration tests / benchmarks can `use driller::`.
[lib]
name = "driller"
path = "src/lib.rs"
[[bin]]
name = "driller"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
colored = "3"
csv = "1.0.5"
regex = "1.5.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.39"
serde_yaml = "0.9"
url = "2.1.1"
linked-hash-map = "0.5.3"
tokio = { version = "1.43.1", features = ["time", "net", "rt", "rt-multi-thread"] }
reqwest = { version = "0.13", features = ["cookies", "hickory-dns"] }
async-trait = "0.1.30"
futures = "0.3.5"
lazy_static = "1.4.0"
rand = "0.10"
hdrhistogram = "7.4.0"
hex = "0.4.3"
encoding_rs = "0.8"
thiserror = "2"
[dev-dependencies]
tempfile = "3.8"
# Release-equivalent build that keeps debug symbols so samply / dtrace / instruments
# can walk stacks. Use with `cargo build --profile profiling` or
# `cargo install --path . --profile profiling --force`. Does not affect the
# default `release` profile shipped to users.
[profile.profiling]
inherits = "release"
debug = true
strip = false