utcnow 0.2.1

Get the current unixtime in a no-std context
Documentation
1
2
3
4
fn main() {
    let now = utcnow::utcnow().unwrap();
    println!("{now} = {now:?}", now = now);
}