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;

#[dfir_rs::main]
async fn main() {
    let mut df = dfir_syntax! {
        // Should be a `Duration`.
        source_interval(5) -> for_each(std::mem::drop);
    };
    df.run().await;
}