fix: make errors module public again

This commit is contained in:
itsscb 2025-01-09 20:45:55 +01:00
parent 486f3ca7f7
commit 80d3f5ed5b
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;