forked from takkt-ag/repeater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (26 loc) · 882 Bytes
/
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
[package]
name = "repeater"
version = "0.1.0"
edition = "2021"
authors = [
"Pit Kleyersburg <[email protected]>",
"TAKKT Industrial & Packaging GmbH <[email protected]>"
]
license = "Apache-2.0"
description = "Command-line tool to parse and then repeat GET-requests of an access-log against a different host"
[[bin]]
name = "r7"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.93"
clap = { version = "4.5.20", features = ["derive", "cargo", "wrap_help"] }
csv = "1.3.0"
futures = "0.3.31"
hifitime = "4.0.0"
indicatif = { version = "0.17.8", features = ["tokio"] }
reqwest = { version = "0.12.9", features = ["gzip"] }
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
tokio = { version = "1.41.1", features = ["full", "time"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }