1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! Bastion Utilities
//!
//! Utilities for Bastion, the highly-available, fault-tolerant, async communication
//! oriented executor.
//!

#![doc(
    html_logo_url = "https://raw.githubusercontent.com/bastion-rs/bastion/master/img/bastion-logo.png"
)]
// Discarded lints
#![allow(clippy::if_same_then_else)]
// Force missing implementations
#![warn(missing_docs)]
#![warn(missing_debug_implementations)]

pub mod math;