timelapse/lib.rs
1//! A simple profiler for Rust applications.
2//!
3//! This crate provides a basic profiling utility that can be used to measure the elapsed time of code execution.
4//! See the `CHANGELOG.md`` for updates and changes.
5//!
6//! The TimeLapse profiler is open-source and can be freely used and modified under the terms of the MIT license.
7
8pub mod profiler;
9
10pub use profiler::TimeLapse;