tket_json_rs/
lib.rs

1#![warn(missing_docs)]
2//! Serializable Rust definition for circuits and operations of the
3//! [TKET](https://github.com/CQCL/tket) quantum compiler.
4
5pub mod circuit_json;
6pub mod clexpr;
7pub mod opbox;
8pub mod optype;
9#[cfg(feature = "pyo3")]
10pub mod pytket;
11pub mod register;
12
13pub use circuit_json::SerialCircuit;
14pub use optype::OpType;