fack_core/lib.rs
1//! Core error capability used by the `fack` facade.
2//!
3//! This crate owns the blanket [`Error`] trait and no code generation logic.
4//!
5//! [`Error`]: crate::error::Error
6#![no_std]
7#![forbid(unsafe_code, missing_docs, rustdoc::all, clippy::all, clippy::pedantic)]
8
9extern crate alloc;
10
11pub mod error;
12
13pub mod prelude {
14 //! A module that re-exports the most commonly used types and traits in this
15 //! crate.
16
17 pub use crate::error::Error;
18}