Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Installation

Add the crate:

cargo add authbox

Import the prelude:

#![allow(unused)]
fn main() {
use authbox::prelude::*;
}

Runtime

Authbox is async-first and requires Tokio.

tokio = { version = "1", features = ["full"] }