-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (51 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
55 lines (51 loc) · 1.33 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
[package]
name = "jwt-hack"
version = "2.5.0"
edition = "2021"
authors = ["hahwul"]
description = "Hack the JWT (JSON Web Token) - A tool for JWT security testing and token manipulation"
repository = "https://github.com/hahwul/jwt-hack"
license = "MIT"
keywords = ["jwt", "security", "penetration-testing", "hacking", "cli"]
categories = ["command-line-utilities", "cryptography"]
[dependencies]
clap = { version = "4.4", features = ["derive"] }
jsonwebtoken = { version = "10.3.0", features = ["aws_lc_rs"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
thiserror = "2.0"
base64 = "0.22.1"
colored = "3.0.0"
log = "0.4"
env_logger = "0.11"
indicatif = "0.18"
rayon = "1.7"
tokio = { version = "1.32", features = ["full"] }
hmac-sha256 = "1.1.14"
chrono = "0.4"
tempfile = "3.20.0"
flate2 = "1.0"
josekit = "0.10.3"
openssl = { version = "0.10", features = ["vendored"] }
rmcp = { version = "1.1.0", features = ["server", "transport-io"] }
dirs = "6.0"
crossterm = "0.29"
ratatui = { version = "0.30", features = ["crossterm"] }
ansi-to-tui = "8"
gag = "1.0"
toml = "1.0"
axum = "0.8"
tower = "0.5"
tower-http = { version = "0.6", features = ["cors"] }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[lib]
name = "jwt_hack"
path = "src/lib.rs"
[[bin]]
name = "jwt-hack"
path = "src/main.rs"