2 unstable releases

0.2.0 Aug 9, 2022
0.1.0 Aug 6, 2021

#203 in Value formatting

Download history 90/week @ 2024-01-17 130/week @ 2024-01-24 170/week @ 2024-01-31 123/week @ 2024-02-07 174/week @ 2024-02-14 218/week @ 2024-02-21 193/week @ 2024-02-28 209/week @ 2024-03-06 76/week @ 2024-03-13 302/week @ 2024-03-20 118/week @ 2024-03-27 121/week @ 2024-04-03 132/week @ 2024-04-10 222/week @ 2024-04-17 110/week @ 2024-04-24 225/week @ 2024-05-01

697 downloads per month
Used in tomldoc

MIT/Apache

10KB
188 lines

Nesty

A small crate to help generate human readable code from rust.

The primary interface is the code! macro which looks as follows:

code!{
    [0] "fn main() {";
    [1]     "println!(\"hello, world\");";
    [0] "}"
}

The bracketed numbers give the desired amount of indentation for the line.

Code blocks can also be nested, like so:

let if_expr = code!{
    [0] "if x > 0 {";
    [1]     "println(\"found one!\")";
    [0] "}"
}
code!{
    [0] "fn main() {";
    [1]     if_expr;
    [0] "}"
}

which will produce

fn main() {
    if x > 0 {
        println!("found one!");
    }
}

The code macro also supports strings, and vectors of strings which will be properly indented, (vectors are assumed to be a vector of lines, strings are indented after each newline)

With the diff_assert feature, the crate also has a assert_same_code macro which checks two strings for equality, and if they differ, prints a diff before panicing.

Dependencies

~0–11MB
~63K SLoC