lift-quantum 0.4.3

LIFT compiler quantum dialect: qubits (linear types), quantum gates, noise attributes, layout mapping
Documentation
//! LIFT Quantum: Quantum computing dialect for the LIFT compiler framework.
//!
//! Provides 50+ quantum gates (IBM, Rigetti, IonQ, Quantinuum native sets),
//! noise models, Kraus channels, quantum error correction codes, and device
//! topology representations with shortest-path routing.

pub mod dialect;
pub mod gates;
pub mod kraus;
pub mod noise;
pub mod qec;
pub mod topology;
pub mod types;

pub use dialect::QuantumDialect;
pub use gates::*;
pub use kraus::*;
pub use noise::*;
pub use qec::*;
pub use topology::*;
pub use types::*;