libmacaroon 0.2.1

Macaroons (bearer credentials with contextual caveats) in pure Rust, with first-party and third-party caveats, WASM support, and cross-language interop.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod macaroon_builder;
pub mod v1;
pub mod v2;
#[cfg(feature = "v2json")]
pub mod v2json;

pub enum Format {
    V1,
    V2,
    #[cfg(feature = "v2json")]
    V2JSON,
}