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

extern crate csv;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate chrono;
extern crate zip;

mod transit;
mod gtfs;

pub use transit::*;
pub use gtfs::{GTFSIterator, Error};