#time #general-purpose #fundamental #collection

no-std time_tools

Collection of general purpose time tools

6 releases

0.2.0 Mar 16, 2024
0.1.4 Jun 13, 2022
0.1.3 May 31, 2022
0.1.0 Jan 10, 2022

#2348 in Development tools

Download history 30/week @ 2023-12-19 12/week @ 2023-12-26 2/week @ 2024-01-02 25/week @ 2024-01-09 27/week @ 2024-01-16 7/week @ 2024-01-23 5/week @ 2024-01-30 11/week @ 2024-02-06 31/week @ 2024-02-13 38/week @ 2024-02-20 56/week @ 2024-02-27 35/week @ 2024-03-05 171/week @ 2024-03-12 58/week @ 2024-03-19 42/week @ 2024-03-26 72/week @ 2024-04-02

345 downloads per month
Used in 5 crates (via wtools)

MIT license

9KB
87 lines

Module :: time_tools

experimental rust-status docs.rs Open in Gitpod discord

Collection of general purpose time tools.

Basic use-case

#[ cfg( feature = "chrono" ) ]
{
  use time_tools::*;

  /* get milliseconds from UNIX epoch */
  let now = time::now();
  println!( "now {}", now );

  /* get nanoseconds from UNIX epoch */
  let now = time::now();
  let now_ns = time::ns::now();
  assert_eq!( now, now_ns / 1000000 );

  /* get seconds from UNIX epoch */
  let now = time::now();
  let now_s = time::s::now();
  assert_eq!( now / 1000, now_s );
}

To add to your project

cargo add time_tools

Try out from the repository

git clone https://github.com/Wandalen/wTools
cd wTools
cd examples/time_tools_trivial
cargo run

Sample

discord Open in Gitpod docs.rs

No runtime deps