//! **rosc** is an implementation of the [OSC 1.0](http://opensoundcontrol.org/spec-1_0) protocol in pure Rust.
//!
extern crate alloc;
extern crate std as core;
extern crate std as alloc;
extern crate byteorder;
extern crate nom;
extern crate time;
/// Crate specific error types.
/// OSC data types, see [OSC 1.0 specification](https://opensoundcontrol.stanford.edu/spec-1_0.html) for details.
pub use crate*;
pub use crate*;
/// Address checking and matching methods
/// Provides a decoding method for OSC packets.
/// Encodes an `OscPacket` to a byte vector.