bastion_utils/lib.rs
1//! Bastion Utilities
2//!
3//! Utilities for Bastion, the highly-available, fault-tolerant, async communication
4//! oriented executor.
5//!
6
7#![doc(
8 html_logo_url = "https://raw.githubusercontent.com/bastion-rs/bastion/master/img/bastion-logo.png"
9)]
10// Discarded lints
11#![allow(clippy::if_same_then_else)]
12// Force missing implementations
13#![warn(missing_docs)]
14#![warn(missing_debug_implementations)]
15
16pub mod math;