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

#54 in #time-parser

Download history 259/week @ 2024-11-15 282/week @ 2024-11-22 306/week @ 2024-11-29 294/week @ 2024-12-06 223/week @ 2024-12-13 188/week @ 2024-12-20 172/week @ 2024-12-27 272/week @ 2025-01-03 369/week @ 2025-01-10 271/week @ 2025-01-17 199/week @ 2025-01-24 225/week @ 2025-01-31 257/week @ 2025-02-07 265/week @ 2025-02-14 311/week @ 2025-02-21 374/week @ 2025-02-28

1,238 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.1–6.5MB
~34K SLoC