1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#![cfg_attr(not(feature = "std"),  no_std)]
#![cfg_attr(test, deny(warnings))]
#![deny(missing_docs)]
#![deny(dead_code)]
//! # parsip
//!
//! A push library for parsing SIP requests and responses.
//!

#[cfg(feature = "std")]
extern crate std as core;

#[macro_use]
extern crate nom;

mod sip;

pub use sip::*;