10 releases

new 0.2.0 Nov 23, 2024
0.1.8 May 28, 2024
0.1.7 Nov 16, 2023
0.1.5 Apr 24, 2023
0.1.1 Jul 11, 2022

#34 in Procedural macros

Download history 1946/week @ 2024-08-03 3511/week @ 2024-08-10 2583/week @ 2024-08-17 1762/week @ 2024-08-24 2311/week @ 2024-08-31 1734/week @ 2024-09-07 1694/week @ 2024-09-14 2435/week @ 2024-09-21 2100/week @ 2024-09-28 1526/week @ 2024-10-05 2200/week @ 2024-10-12 2261/week @ 2024-10-19 2141/week @ 2024-10-26 2332/week @ 2024-11-02 1813/week @ 2024-11-09 2053/week @ 2024-11-16

8,809 downloads per month
Used in 38 crates (31 directly)

Unicode-3.0

31KB
731 lines

databake crates.io

This crate allows data to write itself into Rust code (bake itself in).

Types that implement the Bake trait can be written into Rust expressions, which allows using Rust code itself as a zero-overhead "serialization" strategy.

Example

use databake::*;
use alloc::borrow::Cow;

let data = [Some((18, Cow::Borrowed("hi")))];
assert_eq!(
    data.bake(&Default::default()).to_string(),
    r#"[Some ((18i32 , alloc :: borrow :: Cow :: Borrowed ("hi")))]"#,
);

Derive

Bake can be automatically derived if the derive Cargo feature is enabled.

use databake::*;

#[derive(Bake)]
#[databake(path = my_crate)]
struct MyStruct {
    number: u32,
    string: &'static str,
    slice: &'static [bool],
}

#[derive(Bake)]
#[databake(path = my_crate)]
struct AnotherOne(MyStruct, char);

Testing

The test_bake macro can be used to assert that a particular expression is a Bake fixed point.

test_bake!(
    AnotherOne,
    const,
    crate::AnotherOne(
        crate::MyStruct {
            number: 17u32,
            string: "foo",
            slice: &[true, false],
        },
        'b',
    ),
    my_crate,
);

More Information

For more information on development, authorship, contributing etc. please visit ICU4X home page.

Dependencies

~180KB