8 releases (4 breaking)

Uses old Rust 2015

0.5.0 Jun 29, 2018
0.4.0 Oct 26, 2017
0.3.1 Oct 21, 2017
0.3.0 Jul 12, 2017
0.1.1 Feb 23, 2017

#32 in #time-parser

Download history 290/week @ 2023-12-08 233/week @ 2023-12-15 145/week @ 2023-12-22 97/week @ 2023-12-29 125/week @ 2024-01-05 192/week @ 2024-01-12 204/week @ 2024-01-19 177/week @ 2024-01-26 198/week @ 2024-02-02 134/week @ 2024-02-09 259/week @ 2024-02-16 161/week @ 2024-02-23 210/week @ 2024-03-01 235/week @ 2024-03-08 243/week @ 2024-03-15 210/week @ 2024-03-22

924 downloads per month
Used in 3 crates

MIT/Apache

22KB
497 lines

Ntplib

An ntp packet parsing library written in Rust.

Usage

Add this to your Cargo.toml:

[dependencies]
ntp = "0.5"

and this to your crate root:

extern crate ntp;

Todo

  • no-std
  • io independent parsing
  • async support
  • setting clocks
  • ntp server functionality

Contributions

Pull Requests and Issues welcome!

License

ntp is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT for details.


lib.rs:

Example

fn main() {
let address = "0.pool.ntp.org:123";
let response: ntp::packet::Packet = ntp::request(address).unwrap();
let ntp_time = response.transmit_time;
println!("{}", ntp_time);
}

Dependencies

~1–2MB
~32K SLoC