xntp

Crates.ioxntp
lib.rsxntp
version0.1.3
sourcesrc
created_at2023-01-10 08:10:15.66989
updated_at2023-01-10 09:35:16.907983
descriptionA ntp client lib for Rust
homepage
repositoryhttps://github.com/XAnything/xntp
max_upload_size
id755124
size3,822
XMeng (Asia9847)

documentation

README

xntp

this is a simple and small ntp time client

example

use xntp::NtpClient;
fn main(){
    let client = NtpClient::new();
    let res = client.request("ntp.aliyun.com");
    println!("{}", res.unix_time);
    println!("{}", res.format_time("%Y-%m-%d %H:%M:%S"));
}
Commit count: 9

cargo fmt