rustywt 0.1.0

A simple JWT (JSON Web Token) crate implemented in Rust, focusing on the HS256 (HMAC SHA-256) algorithm.
Documentation
[[bin]]
name = "rustywt"
path = "src/main.rs"

[dependencies.hex]
version = "0.4.3"

[dependencies.hex-literal]
version = "0.4.1"

[dependencies.hmac]
version = "0.12.1"

[dependencies.serde]
features = ["derive"]
version = "1.0.213"

[dependencies.serde_json]
version = "1.0.132"

[dependencies.sha2]
version = "0.10.8"

[lib]
name = "rustywt"
path = "src/lib.rs"

[package]
authors = ["Joao Prado joaoprado275@gmail.com"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["authentication", "cryptography"]
description = "A simple JWT (JSON Web Token) crate implemented in Rust, focusing on the HS256 (HMAC SHA-256) algorithm."
documentation = "https://docs.rs/rustywt"
edition = "2021"
homepage = "https://github.com/joaoprado-rs/rustywt"
keywords = ["jwt", "jsonwebtoken", "authentication", "rust"]
license = "MIT"
name = "rustywt"
readme = "README.md"
repository = "https://github.com/joaoprado-rs/rustywt"
version = "0.1.0"