hel-time 0.4.1

Simple util crate to deal with time
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(clippy::assertions_on_constants)]

use hel_time::{iso8601utc, utc};

#[test]
#[ignore = "to see output run 'rust t -- --ignored'"]
fn output_iso8601utc() {
	println!("{}", iso8601utc());

	println!("{:?}", utc());

	assert!(false);
}