1 stable release

Uses old Rust 2015

1.1.0 Sep 25, 2018

#399 in Profiling

Download history 69/week @ 2024-12-08 27/week @ 2024-12-15 32/week @ 2024-12-22 10/week @ 2024-12-29 29/week @ 2025-01-05 32/week @ 2025-01-12 33/week @ 2025-01-19 22/week @ 2025-01-26 52/week @ 2025-02-02 38/week @ 2025-02-09 29/week @ 2025-02-16 44/week @ 2025-02-23 41/week @ 2025-03-02 41/week @ 2025-03-09 53/week @ 2025-03-16 21/week @ 2025-03-23

165 downloads per month

MIT license

7KB
81 lines

callgrind

callgrind is a Rust crate intended to complement the valgrind_request crate. It is intended to be used during testing to gather instrumentation and statistics to allow examination of performance bottlenecks.

To use it:-

extern crate callgrind;

use ::callgrind::CallgrindClientRequest;


#[test]
fn some_test()
{
	CallgrindClientRequest::start();
	
	// Execute some code to gather statistics on.
	...
	
	CallgrindClientRequest::stop(None);
}

Licensing

The license for this project is MIT.

Dependencies

~49KB