#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/", env!("CARGO_PKG_README")))]
#![deny(rustdoc::broken_intra_doc_links)]
#![deny(missing_debug_implementations)]
#![deny(missing_docs)]
pub mod driver;
pub mod error;
pub mod ir {
pub use haloumi_ir::*;
pub mod r#gen {
pub use haloumi_ir_gen::*;
}
}
pub mod synthesis {
pub use haloumi_synthesis::*;
}
pub mod core {
pub use haloumi_core::*;
}
pub mod backends {
#[cfg(feature = "picus-backend")]
pub mod picus {
pub use haloumi_picus::*;
}
#[cfg(feature = "llzk-backend")]
pub mod llzk {
pub use haloumi_llzk::*;
}
}