#date-time #time-measurement #iso-8601 #precision #measurement #date

aloe-time

Aloe Time offers precise time management features, including absolute time storage with millisecond precision, relative time calculation with floating point accuracy, and tools for measuring execution time via RAII. Comprehensive date and time utilities ensure seamless time handling in Rust applications. This crate is a translation of the c++ juce module serving the same function.

2 releases

Uses new Rust 2024

new 0.1.1 Apr 2, 2025
0.1.0 Apr 2, 2025

#15 in #iso-8601

Download history 94/week @ 2025-03-28

94 downloads per month
Used in 180 crates (30 directly)

GPL-3.0 license

495KB
5.5K SLoC

Aloe Time

Aloe Time is a Rust crate designed for precise time management and manipulation. With support for absolute and relative time representations at fine-grained precision, it serves as an essential tool for performance monitoring, time formatting, and system timing operations.

Features

  • Absolute Time: Represent exact moments in time with millisecond precision. Suitable for timestamping and date-time calculations.
  • Relative Time: Measure durations with high accuracy using floating-point seconds, enabling easy arithmetic on time quantities.
  • Scoped Time Measurement: A robust RAII system for timing code execution, capturing elapsed time in seconds with precision.

Usage

Use Time for capturing the current system time with detailed formatting options and conversion utilities. With ScopedTimeMeasurement, leverage deterministic lifetime management for code block execution timing. The RelativeTime structure simplifies working with time intervals.

Example

use aloe_time::{Time, ScopedTimeMeasurement, RelativeTime};

fn main() {
    let mut time_sec = 0.0;
    {
        let _measurement = ScopedTimeMeasurement::new(&mut time_sec);
        // Perform operations
    }
    println!("Operation took {:.6} seconds", time_sec);
}

Calculation

  • Add, subtract, and compare time objects with intuitive arithmetic operations built-in for both Time and RelativeTime.

Formatting

  • Format times based on ISO-8601 standards, and convert between multiple time descriptions with versatile methods.

Installation

Add the following to your Cargo.toml:

[dependencies]
aloe-time = "0.1.0"

License

This project is licensed under the GPL-3.0 License.

Contribution

Contributions are welcome! Visit the repository to get started.


This README 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

~12–26MB
~353K SLoC