-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (59 loc) · 1.6 KB
/
Copy pathCargo.toml
File metadata and controls
73 lines (59 loc) · 1.6 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
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "ushio"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
authors = ["Raskell Contributors"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/raskell-io/ushio"
homepage = "https://raskell.io"
documentation = "https://github.com/raskell-io/ushio"
description = "Deterministic edge traffic replay for understanding WAF and proxy behavior"
keywords = ["replay", "traffic", "har", "waf", "testing"]
categories = ["command-line-utilities", "network-programming", "development-tools::testing"]
readme = "README.md"
[lib]
name = "ushio"
path = "src/lib.rs"
[[bin]]
name = "ushio"
path = "src/main.rs"
[dependencies]
# Async runtime
tokio = { version = "1.40", features = ["full"] }
futures = "0.3"
# HTTP client
reqwest = { version = "0.12", features = ["rustls-tls", "gzip", "brotli", "cookies", "socks"] }
http = "1.2"
hyper = { version = "1.8", features = ["server", "http1"] }
hyper-util = { version = "0.1", features = ["tokio", "server-auto"] }
http-body-util = "0.1"
# HAR parsing
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# CLI
clap = { version = "4.5", features = ["derive", "env", "color"] }
clap_complete = "4.5"
# Output formatting
colored = "2.1"
similar = "2.6"
# Hashing
sha2 = "0.10"
# Timing
chrono = { version = "0.4", features = ["serde"] }
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# URL handling
url = "2.5"
[dev-dependencies]
tempfile = "3.12"
wiremock = "0.6"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true