1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#![allow(rustdoc::bare_urls)]
#![doc = include_str!("../readme.md")]

pub mod bindings;
#[cfg(feature = "stable-api")]
pub mod macros;
pub mod memory;
pub mod special_consts;
#[cfg(feature = "stable-api")]
pub mod stable_api;
pub mod symbol;
pub mod tracking_allocator;
pub mod value_type;

mod hidden;
mod ruby_abi_version;
mod utils;

pub use bindings::*;
#[cfg(feature = "stable-api")]
pub use macros::*;
pub use ruby_abi_version::*;
pub use special_consts::*;
#[cfg(feature = "stable-api")]
pub use stable_api::StableApiDefinition;
pub use value_type::*;

#[deprecated(since = "0.9.79", note = "Use `VALUE` instead")]
pub type Value = VALUE;
#[deprecated(since = "0.9.79", note = "Use `VALUE` instead")]
pub type RubyValue = VALUE;

#[cfg(use_global_allocator)]
set_global_tracking_allocator!();

#[cfg(use_ruby_abi_version)]
ruby_abi_version!();