1
2
3
4
5
6
7
8
9
//! `qurust` library is a collection of modules used for working with quantum programs and circuits.
//!
//! Module `qasm3` serves as a meta representation of OpenQASM3 programs.
//! We refer to OpenQASM3 as QASM3 for short.
//! For more information and an example, see the module documentation.

#![doc(html_root_url = "https://docs.rs/qurust/0.1.0")]

pub mod qasm3;