qurust/lib.rs
1//! `qurust` library is a collection of modules used for working with quantum programs and circuits.
2//!
3//! Module `qasm3` serves as a set of modules used for representation and parsing of OpenQASM3 programs.
4//! We refer to OpenQASM3 as QASM3 for short.
5//! For more information and an example, see the module documentation.
6
7#![doc(html_root_url = "https://docs.rs/qurust/0.2.0")]
8
9pub mod qasm3;