warts 0.4.0

Rust implementation of the warts format.
Documentation
//! An implementation of the warts file format.
//!
//! Docstrings mostly comes from the warts format man page, or Scamper's source code.
//!
//! For examples, see the [`examples/`](https://github.com/dioptra-io/warts/tree/main/examples) directory.

#[macro_use]
mod macros;

mod address;
mod address_deprecated;
mod cycle;
mod flags;
mod icmpext;
mod list;
mod object;
mod ping;
mod sized;
mod timeval;
mod trace;
mod tracelb;

pub use address::*;
pub use address_deprecated::*;
pub use cycle::*;
pub use flags::*;
pub use icmpext::*;
pub use list::*;
pub use object::*;
pub use ping::*;
pub use sized::*;
pub use timeval::*;
pub use trace::*;
pub use tracelb::*;

// This trait must be imported by consumers who wants to write warts objects.
pub use deku::DekuContainerWrite;