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

mod rb_config;

pub use rb_config::*;

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