dfir_rs 0.16.0

DFIR runtime for Rust, used by Hydro.
Documentation
1
2
3
4
5
6
7
8
9
10
use dfir_rs::dfir_syntax;

fn main() {
    let mut df = dfir_syntax! {
        j = join::<'static, 'static, 'static>() -> for_each(std::mem::drop);
        source_iter(0..10) -> map(|x| (x, x)) -> [0]j;
        source_iter(0..10) -> map(|x| (x, x)) -> [1]j;
    };
    df.run_available_sync();
}