haloumi-ir 0.5.4

Intermediate representation of the haloumi framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]
#![deny(rustdoc::broken_intra_doc_links)]
#![deny(missing_debug_implementations)]
#![deny(missing_docs)]

mod canon;
mod circuit;
pub mod diagnostics;
pub mod error;
pub mod expr;
pub mod groups;
pub mod meta;
pub mod printer;
mod slot;
pub mod stmt;
pub mod traits;
pub use circuit::IRCircuit;
pub use haloumi_core::{cmp::*, eqv::*, felt::*, slot::*};