systeroid-core 0.4.6

Core library of systeroid
Documentation
//! Core library of systeroid.

#![warn(missing_docs, clippy::unwrap_used)]

#[macro_use]
extern crate lazy_static;

/// Export parseit crate.
pub use parseit;

/// Sysctl implementation.
pub mod sysctl;

/// Error implementation.
pub mod error;

/// Parsers for the kernel documentation.
pub(crate) mod parsers;

/// Configuration.
pub mod config;

/// Cache manager.
pub mod cache;

/// Tree output generator.
pub mod tree;