#sleep #standard #time

snor

Wrapper to standard library sleep functionality

2 releases

0.1.1 Mar 5, 2022
0.1.0 Mar 5, 2022

#35 in #sleep

22 downloads per month
Used in antidot-rs

MIT license

4KB

Snor

Wrapper to standard library sleep functionality.

Why

I find myself always needing the sleep functionality given by the standard library, but I always need to search how it works, so I made this to make my life easier (not that it contributes much).

Usage

In Cargo.toml:

[dependencies]
snor = "0.1.1"

Used in a crate as:

use snor;

// Sleep for 10 seconds.
snor::sleep_sec(10);

// Sleep for 100 milliseconds.
snor::sleep_ms(100);

// Sleep for 1000 microseconds.
snor::sleep_micros(1000);

//Sleep for 10000 nanoseconds.
snor::sleep_nanos(10000);

lib.rs:

Wrapper to standard library sleep functionality.

Why

I find myself always needing the sleep functionality given by the standard library, but I always need to search how it works, so I made this to make my life easier (not that it contributes much).

Usage

In Cargo.toml:

[dependencies]
snor = "0.1.1"

Used in a crate as:

use snor;

// Sleep for 10 seconds.
snor::sleep_sec(10);

// Sleep for 100 milliseconds.
snor::sleep_ms(100);

// Sleep for 1000 microseconds.
snor::sleep_micros(1000);

//Sleep for 10000 nanoseconds.
snor::sleep_nanos(10000);

No runtime deps