TimeLapse - 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 profiler is open-source and can be freely used and modified under the terms of the MIT license.
Changelog
[0.1.3] - 2025-06-28
-
Added two new macros:
profile_end_print!()- Use println! instead of astd::loginstance.profile_end_log!()- Additional parameter to select the log'sLevelto use.
See the documentation for usage details.
[0.1.2] - 2025-06-12
- Added example of usage for the defined macros.
- Added a CHANGELOG.md file
[0.1.1] - 2025-06-11
- Added
pub useentries inlib.rsto simplify usage in calling applications.
[0.1.0] - 2025-06-10
Initial release