Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Get The Current DateTime In Rust

rust
```cargo
[dependencies]
chrono = "0.4.22"
```



use chrono::offset::Utc;

fn main() {
    let dt = Utc::now();
    println!("{}", dt);
    println!("{}", dt.to_rfc3339_opts(chrono::SecondsFormat::Secs, true));
}
results start