b15f-rs/src/lib.rs
2022-12-13 01:38:50 +01:00

19 lines
578 B
Rust

#![deny(missing_docs,
missing_debug_implementations,
trivial_casts, trivial_numeric_casts,
unsafe_code,
unstable_features,
unused_import_braces, unused_qualifications)]
//! Driver code for the board 15
//!
//! It aims to be syntactically similar to the [`original`] implementation.
//! The original repository is no longer maintained, and this library doesn't maintain it either,
//! it simply provides the same functionality in another language.
//!
//! [`original`]: https://github.com/devfix/b15f
pub mod b15f;
mod request;
pub use crate::b15f::B15F;