ntp_parser/
lib.rs

1//! # ntp-parser
2//!
3//! [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE-MIT)
4//! [![Apache License 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](./LICENSE-APACHE)
5//! [![Build Status](https://travis-ci.org/rusticata/ntp-parser.svg?branch=master)](https://travis-ci.org/rusticata/ntp-parser)
6//! [![Crates.io Version](https://img.shields.io/crates/v/ntp-parser.svg)](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;