Skip to main content

dfir_lang/
lib.rs

1//! DFIR syntax
2
3#![warn(missing_docs)]
4#![cfg_attr(nightly, feature(proc_macro_diagnostic, proc_macro_span))]
5
6pub mod graph_ids;
7
8#[cfg(feature = "codegen")]
9pub mod diagnostic;
10#[cfg(feature = "codegen")]
11pub mod graph;
12#[cfg(feature = "codegen")]
13pub mod parse;
14#[cfg(feature = "codegen")]
15pub mod pretty_span;
16#[cfg(feature = "codegen")]
17pub mod process_singletons;
18#[cfg(feature = "codegen")]
19pub mod union_find;