-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 790 Bytes
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 790 Bytes
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
[package]
name = "jwt-cli"
description = "A super fast CLI tool to decode and encode JWTs built in Rust"
version = "6.2.0"
repository = "https://github.com/mike-engel/jwt-cli"
authors = [
"Mike Engel <mike@mike-engel.com>",
"Corey McGregor <https://github.com/shousper>",
"Aaron Schaef <https://github.com/atschaef>",
"Hugh Simpson <https://github.com/hughsimpson>",
]
edition = "2021"
license = "MIT"
[[bin]]
name = "jwt"
path = "src/main.rs"
test = true
[dependencies]
clap = { version = "4", features = ["derive"] }
jsonwebtoken = "9.3.1"
bunt = "0.2"
serde = "1"
serde_derive = "1"
serde_json = "1"
chrono = "0.4"
parse_duration = "2.1.1"
atty = "0.2"
clap_generate = "3.0.3"
clap_complete = "4.6.1"
clap_complete_nushell = "4.6"
[dev-dependencies]
tempdir = "0.3.7"