lift-config 0.4.1

LIFT-CONFIG: .lith configuration language parser and validator
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! LIFT Config: Configuration language parser for `.lith` files.
//!
//! Provides parsing and validation of LIFT compilation configuration,
//! including target backend, budget constraints, optimisation levels,
//! simulation toggles, and quantum device settings.

pub mod parser;
pub mod types;

pub use parser::ConfigParser;
pub use types::*;