1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
//! # ntp-parser //! //! [](./LICENSE-MIT) //! [](./LICENSE-APACHE) //! [](https://travis-ci.org/rusticata/ntp-parser) //! [](https://crates.io/crates/ntp-parser) //! //! ## Overview //! //! ntp-parser is a parser for the NTP protocol. //! //! This crate mostly serves as a demo/example crate for network protocol parsers written using nom, and nom-derive. // add missing_docs #![deny( unsafe_code, unstable_features, unused_import_braces, unused_qualifications )] pub use ntp::*; pub mod ntp;