| Crates.io | timelapse |
| lib.rs | timelapse |
| version | 0.1.3 |
| created_at | 2025-06-10 13:54:15.721571+00 |
| updated_at | 2025-06-28 16:23:42.039847+00 |
| description | A Rust library for simple performance measurement of code. |
| homepage | |
| repository | https://github.com/turgu1/timelapse |
| max_upload_size | |
| id | 1707128 |
| size | 11,127 |
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.
Added two new macros:
profile_end_print!() - Use println! instead of a std::log instance.profile_end_log!() - Additional parameter to select the log's Level to use.See the documentation for usage details.
pub use entries in lib.rs to simplify usage in calling applications.Initial release