-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (26 loc) · 1.04 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
[package]
name = "paseto_cli"
version = "1.0.1-beta.1"
edition = "2021"
description = "A command-line tool for generating and validating PASETO v4.local tokens with custom claims and multiple output formats"
authors = ["Roland Rodriguez <[email protected]>"]
license = "GPL-3.0"
repository = "https://github.com/GovCraft/paseto_cli"
homepage = "https://github.com/GovCraft/paseto_cli"
documentation = "https://github.com/GovCraft/paseto_cli#readme"
readme = "README.md"
keywords = ["paseto", "authentication", "security", "cli", "tokens"]
categories = ["command-line-utilities", "cryptography"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
rusty_paseto = { version = "0.7.1", features = ["v4_local"] }
anyhow = "1.0.86"
clap = { version = "4.5.9", features = ["cargo", "derive", "wrap_help"] }
serde_json = "1.0.120"
time = { version = "0.3.36", features = ["parsing", "formatting"] }
termcolor = "1.4.1"
unicode-width = "0.1.13"
thiserror = "1.0.63"
textwrap = { version = "0.16.1", features = ["terminal_size"] }
terminal_size = "0.3.0"