timelapse 0.1.1

A Rust library for simple performance measurement of code.
Documentation
1
2
3
4
5
6
7
8
9
//! A simple profiler for Rust applications.
//!
//! This crate provides a basic profiling utility that can be used to measure the elapsed time of code execution.
//!
//! The TimeLapse profiler is open-source and can be freely used and modified under the terms of the MIT license.

pub mod profiler;

pub use profiler::TimeLapse;