ruipmi 0.6.0

An asynchronous IPMI client library implemented in Rust using Tokio.
Documentation
mod cipher;
mod client;
mod codec;
mod constants;
mod crypto;
mod error;
pub mod parsers;

pub use cipher::{AuthAlg, CipherSuite, CryptAlg, IntegrityAlg};
pub use client::{IpmiClient, SolSession};
pub use error::IpmiError;
pub use parsers::{
    SdrRecord, SdrFullSensor, SdrCompactSensor, SdrHeader, SdrCommonSensor, SdrThreshold,
    parse_sdr_header, parse_sdr_record, calc_sensor_reading,
    SelEntry, parse_sel_record, sensor_type_name, event_severity,
    FruCommonHeader, FruBoardInfo, FruProductInfo,
    parse_fru_common_header, parse_fru_board_info, parse_fru_product_info,
    decode_id_string, decode_6bit_ascii, sensor_unit_string,
};