Very simple Rust library to retrieve a time stamp from a NTP server.
NOTE: These are my first baby steps developing code using Rust.
use time::{Timespec,at};
use ntpclient::retrieve_ntp_timestamp;
let timestamp :Timespec = retrieve_ntp_timestamp("sundial.columbia.edu").unwrap();
println!("Internet time: {}", at(timestamp).asctime());