1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! TransitFeed provides a consistent set of datastructures, parsers,
//! and API clients for obtaining usable transit related information
//! such as routes, stop, trips, stop times, and more.

extern crate quick_csv;
extern crate chrono;

mod transit;
mod gtfs;
mod error;

pub use transit::*;
pub use gtfs::{AgencyDecoder, StopDecoder, StopTimeDecoder};