37 releases (8 breaking)
0.16.0-rc.0 | Jan 24, 2023 |
---|---|
0.15.0 | Dec 7, 2022 |
0.15.0-rc.0 | Oct 28, 2022 |
0.13.0 | Jul 8, 2022 |
0.8.0 | Oct 19, 2021 |
#256 in Parser implementations
351 downloads per month
Used in qcs
380KB
9K
SLoC
Quil Parser & Program Builder
This library is the implementation of the Quil spec in Rust.
It serves three purposes:
- Parse Quil programs from strings, and output programs to strings
- Manipulate Quil programs within Rust
- Construct a dependency graph among program instructions
It should be considered unstable until the release of v1.0.
Testing
When testing this crate, you should run with the --all-features
flag to ensure all tests are executed.
cargo test --all-features
lib.rs
:
Welcome to the Rust implementation of the Quil quantum programming language.
Within this crate you'll find:
- Builder utilities for Quil programs, instructions, and expressions
- A parser and serializer for converting Quil to and from text strings
- A constructor for timing graphs, for understanding and debugging Quil-T pulse control programs
This crate is still early in its development and does not fully support all
Quil features, nor claim a stable API. Prior to v1.0
, minor-version changes
are considered breaking changes. Please pin your versions when needed, and
closely follow the
changelog when upgrading.
Dependencies
~4MB
~76K SLoC