-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (42 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
48 lines (42 loc) · 1.08 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
[package]
name = "jwtinfo"
description = "Command line tool to get information about JWTs (Json Web Tokens)"
keywords = ["JWT", "token", "web", "json"]
categories = [
"command-line-interface",
"command-line-utilities",
"cryptography",
"development-tools",
"development-tools::debugging",
]
repository = "https://github.com/lmammino/jwtinfo"
homepage = "https://github.com/lmammino/jwtinfo"
documentation = "https://github.com/lmammino/jwtinfo"
readme = "README.md"
version = "0.6.1"
authors = ["Luciano Mammino", "Stefano Abalsamo"]
edition = "2018"
license = "MIT"
[package.metadata.wix]
upgrade-guid = "77B6F50C-1537-4E84-A09B-BB2993285D40"
path-guid = "1D69368A-6506-4A00-A0A9-2B65A54172F5"
license = false
eula = false
[dependencies]
clap = "4.4.7"
base64 = "0.21"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
[lib]
name = "jwtinfo"
path = "src/main.rs"
[[bin]]
name = "jwtinfo"
path = "src/cli.rs"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"