paseto 2.0.2+1.0.3

An alternative token format to JWT
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![recursion_limit = "128"]

pub mod errors;
pub mod pae;

#[cfg(any(feature = "easy_tokens_chrono", feature = "easy_tokens_time"))]
pub mod tokens;
#[cfg(any(feature = "easy_tokens_chrono", feature = "easy_tokens_time"))]
pub use self::tokens::*;
#[cfg(feature = "v1")]
pub mod v1;
#[cfg(feature = "v2")]
pub mod v2;