1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#![allow(stable_features)]
#![feature(futures_api)]

mod errors;
pub mod sys;
pub mod units;
pub mod utils;

pub use self::errors::{Error, ErrorKind, Result};

/// Prelude intended to be used across `heim-*` crates.
///
/// Consider not to use it in your code, because it is kinda internal
/// and might change at any time.
pub mod prelude {
    pub use super::errors::{Error, ErrorKind, Result};
    pub use super::utils;
    pub use futures::prelude::*;
}