reikland 0.2.0

A serde-compatible Ruby marshal parser and deserializer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod bignum;
#[cfg(feature = "encoding")]
pub mod encoding;
pub mod fixnum;
pub mod float;
pub mod regex;
pub mod string;
pub mod type_byte;

#[cfg(feature = "encoding")]
pub use encoding::RubyEncoding;

pub use {
    regex::RbRegexStr,
    string::{RbStr, RbString},
};