Merge pull request #2 from itsscb/chore--streamline-api

fix: make errors module public again
This commit is contained in:
itsscb 2025-01-09 20:46:53 +01:00 committed by GitHub
commit 32ea1371c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
name = "paseto_maker"
authors = ["itsscb <dev@itsscb.de>"]
license = "GPL-3.0"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
repository = "https://github.com/itsscb/paseto_maker"
description = "This library provides high-level functionality for creating, handling, and managing PASETO tokens."

View File

@ -25,7 +25,7 @@
//!
//! This library uses the `rusty_paseto` crate underneath and currently only supports PASETO Tokens V4.public.
mod claims;
mod errors;
pub mod errors;
mod maker;
pub use claims::Claims;