1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod bindings;
pub mod utils;

#[cfg(feature = "cc")]
pub mod cc;

mod rb_config;

pub use rb_config::*;

/// The current RbConfig.
pub fn rb_config() -> RbConfig {
    RbConfig::current()
}