#cpu-info #hardware #osquery #system #rustcrate

aloe-system

Aloe System is a Rust crate that provides OS and hardware abstraction, enabling detailed system-level queries and management tasks. This crate is a translation of the c++ juce module serving the same function.

2 releases

Uses new Rust 2024

new 0.1.2 Apr 2, 2025
0.1.0 Apr 2, 2025

#6 in #osquery

Download history 92/week @ 2025-03-28

92 downloads per month
Used in 122 crates (2 directly)

GPL-3.0 license

125KB
1K SLoC

Aloe System Crate

Aloe System is a sophisticated Rust crate designed to interface with underlying system configurations and properties. It provides a comprehensive abstraction for querying and interacting with varied operating systems to determine system-level details and capabilities, both hardware and software.

Features

  • Identifies and enumerates various operating systems, providing detailed versioning information for MacOSX and Windows.
  • Engages with system crash handlers and establishes crash handler callbacks through platform-specific data interfaces.
  • Capable of retrieving elaborate CPU information, including instruction sets (e.g. SSE, AVX) and logical/physical CPU counts.
  • Functions to read environment variables, device descriptions, user locale, and system hardware specifications.
  • Supports WASM and provides specific functionalities for web assembly environments.

Usage

Add to your Cargo.toml:

[dependencies]
aloe-system = "0.1.0"

Example

use aloe_system::SystemStats;

fn main() {
    let os_type = SystemStats::get_operating_system_type();
    println!("Operating System Type: {:?}", os_type);
}

This is a powerful crate designed for developers seeking efficient and detailed interfacing with system attributes, making it vital in environments where system awareness is crucial.


This README.md file was generated by an AI model and may not be 100% accurate, however, it should be pretty good.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~13–27MB
~380K SLoC