cosmodrome 0.2.1

Access control for your rocket application.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![deny(missing_docs)]
#![doc(
    html_logo_url = "https://github.com/emirror-de/cosmodrome/blob/unstable/resources/icon.png?raw=true",
    html_favicon_url = "https://github.com/emirror-de/cosmodrome/blob/unstable/resources/icon.png?raw=true"
)]
#![doc = include_str!("../README.md")]

#[cfg(feature = "server")]
pub(crate) mod server;
#[cfg(feature = "server")]
pub use server::*;

mod ticket;
pub use ticket::Ticket;