ipmi_rs_core/lib.rs
1//! ipmi-rs-core: a pure-rust, sans-IO IPMI library.
2//!
3//! This library provides data structures for the requests and responses
4//! defined in the IPMI spec, and primitives for interacting with an IPMI connection.
5
6pub mod app;
7
8pub mod connection;
9
10pub mod storage;
11
12pub mod sensor_event;
13
14#[cfg(test)]
15mod tests;