better-stopwatch 0.1.0

This is a module for time measurement in your Rust code
Documentation
1
2
3
4
5
6
7

use better_stopwatch::in_development;

#[test]
pub fn test_in_development() {
    assert_eq!(in_development(), "in development".to_string());
}