-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
64 lines (58 loc) · 1.34 KB
/
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
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
[package]
name = "jwt-ui"
version = "1.3.0"
authors = ["Deepu K Sasidharan <[email protected]>"]
description = """
A Terminal UI for decoding/encoding JSON Web Tokens
"""
documentation = "https://github.com/jwt-rs/jwt-ui"
keywords = ["jwt", "oidc", "oauth", "oauth2"]
repository = "https://github.com/jwt-rs/jwt-ui"
homepage = "https://github.com/jwt-rs/jwt-ui"
readme = "README.md"
license = "MIT"
exclude = [
"assets/*",
".github",
"Makefile.toml",
"CONTRIBUTING.md",
"*.log",
"tags",
]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[badges]
[dependencies]
crossterm = "0.28.1"
ratatui = { version = "0.29.0", default-features = false, features = [
'crossterm',
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_derive = "1"
clap = { version = "4.5", features = [
"help",
"usage",
"error-context",
"derive",
] }
tui-input = "0.11.1"
tui-textarea = { version = "0.7.0", default-features = false, features = [
"crossterm",
] }
backtrace = "0.3"
human-panic = "2.0"
jsonwebtoken = "9.2.0"
chrono = "0.4"
copypasta = "0.10.0"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["user-hooks"]
[[bin]]
bench = false
path = "src/main.rs"
name = "jwtui"
[profile.release]
lto = true
codegen-units = 1