1
2
3
4
5
6
7
8
9
10
//! This is the rust-rocket crate.
//! It is designed to work as a client library for GNU Rocket.

extern crate byteorder;

pub mod interpolation;
pub mod track;
pub mod client;

pub use client::{Rocket, RocketErr, Event};