diff --git a/Cargo.toml b/Cargo.toml index 55e932f..0aeb37f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "paseto_maker" authors = ["itsscb "] 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." diff --git a/src/lib.rs b/src/lib.rs index 02c0666..30407c0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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;