utcnow 0.1.3

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