1 stable release

Uses old Rust 2015

1.1.0 Sep 25, 2018

#519 in Profiling

Download history 470/week @ 2025-09-21 1873/week @ 2025-09-28 92/week @ 2025-10-05 656/week @ 2025-10-12 104/week @ 2025-10-19 441/week @ 2025-10-26 882/week @ 2025-11-02 1938/week @ 2025-11-09 68/week @ 2025-11-16 1119/week @ 2025-11-23 582/week @ 2025-11-30 227/week @ 2025-12-07 138/week @ 2025-12-14 280/week @ 2025-12-21 145/week @ 2025-12-28 177/week @ 2026-01-04

744 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

~47KB