rusty_paseto 0.10.0

A type-driven, ergonomic alternative to JWT for secure stateless PASETO tokens.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(any(feature = "v1", doc))]
mod v1;
#[cfg(any(feature = "v2", doc))]
mod v2;
#[cfg(any(feature = "v3", doc))]
mod v3;
#[cfg(any(feature = "v4", doc))]
mod v4;

#[cfg(any(feature = "v1", doc))]
pub use v1::V1;
#[cfg(any(feature = "v2", doc))]
pub use v2::V2;
#[cfg(any(feature = "v3", doc))]
pub use v3::V3;
#[cfg(any(feature = "v4", doc))]
pub use v4::V4;