1#![deny(
2 missing_docs,
3 missing_debug_implementations,
4 missing_copy_implementations,
5 trivial_casts,
6 trivial_numeric_casts,
7 unsafe_code,
8 unstable_features,
9 unused_import_braces,
10 unused_qualifications
11)]
12#![doc(
13 html_logo_url = "https://raw.githubusercontent.com/bobertoyin/bobertoyin/main/mbta-rs-logo.png",
14 html_favicon_url = "https://raw.githubusercontent.com/bobertoyin/bobertoyin/main/mbta-rs-logo.png"
15)]
16#![doc = include_str!("../README.md")]
17
18pub mod client;
19pub use client::*;
20pub mod error;
21pub use error::*;
22#[cfg(feature = "map")]
23pub mod map;
24pub mod models;
25pub use models::*;