27 stable releases (3 major)

3.3.1 Dec 18, 2023
3.3.0 Jun 4, 2023
3.2.4 Apr 14, 2023
3.2.0 Mar 20, 2023
0.2.0 Aug 8, 2022

#44 in Date and time

Download history 390/week @ 2023-12-23 1243/week @ 2023-12-30 1991/week @ 2024-01-06 2023/week @ 2024-01-13 2197/week @ 2024-01-20 2413/week @ 2024-01-27 2109/week @ 2024-02-03 2076/week @ 2024-02-10 1461/week @ 2024-02-17 1738/week @ 2024-02-24 2149/week @ 2024-03-02 2468/week @ 2024-03-09 1683/week @ 2024-03-16 2254/week @ 2024-03-23 2574/week @ 2024-03-30 2253/week @ 2024-04-06

9,138 downloads per month
Used in ncount

MIT/Apache

72KB
1K SLoC

libsw

Crates.io Crates.io docs.rs

libsw is a comprehensive and safe stopwatch implementation.

The minimum supported version of Rust is 1.61.0.

License

Dual licensed under the MIT or Apache 2.0 licenses.


lib.rs:

libsw is a comprehensive stopwatch implementation.

It offers checked stopping and arithmetic, precise control over when operations occur, and supports arbitrary timekeeping types.

If you want to do benchmarking, please use something like Criterion.

Introduction

libsw provides the StopwatchImpl type as a stopwatch.

This implementation is agnostic to the timekeeping type used, by virtue of being generic. Any type I that implements the Instant trait (as in StopwatchImpl<I>) can be used for timekeeping.

Instant is implemented for several timekeeping types out of the box (see timekeeping support). If present, these implementations are exposed as type aliases.

Features

Name Features enabled Description
default std_instant, std_systemtime Enabled by default.
std Depends on the standard library. Implements std::error::Error for Error.
nightly Implements core::error::Error for Error if std is not enabled. Requires a nightly compiler.
std_instant std Implements Instant for std::time::Instant. Exposes Sw type alias.
std_systemtime std Implements Instant for std::time::SystemTime. Exposes SystemSw type alias.
tokio std Implements Instant for tokio::time::Instant. Exposes TokioSw type alias.
time std Implements Instant for time::Instant. Exposes TimeSw type alias. Bumps MSRV to 1.62.1.
coarsetime std Implements Instant for coarsetime::Instant. Exposes CoarseSw type alias.
quanta std Implements Instant for quanta::Instant. Exposes QuantaSw type alias.

Timekeeping support

libsw can be used with any timekeeping type that implements Instant, as long as the appropriate feature flag is enabled.

See Instant's documentation for a list of types supported out of the box.

no_std support

The std feature flag unsets #[no_std]. It is enabled by default, but you can disable it by disabling the default features.

In Cargo.toml,

[dependencies]
# replace '...' with the appropriate version
libsw = { version = ..., default-features = false }

Compiler support

The minimum supported version of Rust is 1.61.0.

Safety

libsw contains no unsafe code (#![forbid(unsafe_code)]).

Dependencies

~0–3MB
~53K SLoC