Skip to content

Commit

Permalink
Updates clap and base64, removes lazy_static (#31)
Browse files Browse the repository at this point in the history
* Updated base64 and clap to more recent versions

* Removed lazy_static in favour of OnceLock
  • Loading branch information
lmammino authored Jul 9, 2023
1 parent 4c8e566 commit 1955af5
Show file tree
Hide file tree
Showing 6 changed files with 227 additions and 116 deletions.
247 changes: 186 additions & 61 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,16 @@ categories = ["command-line-interface", "command-line-utilities", "cryptography"
repository = "https://github.com/lmammino/jwtinfo"
documentation = "https://github.com/lmammino/jwtinfo"
readme = "README.md"
version = "0.3.0"
version = "0.4.0"
authors = ["Luciano Mammino", "Stefano Abalsamo"]
edition = "2018"
license = "MIT"

[dependencies]
clap = "2.33"
base64 = "0.11"
clap = "4.3"
base64 = "0.21"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
lazy_static = "1.4"

[lib]
name = "jwtinfo"
Expand Down
Loading

0 comments on commit 1955af5

Please sign in to comment.