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