rb_sys_build/
lib.rs

1pub mod bindings;
2pub mod cc;
3pub mod utils;
4
5mod rb_config;
6
7pub use rb_config::*;
8
9/// The current RbConfig.
10pub fn rb_config() -> RbConfig {
11    RbConfig::current()
12}