Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ members = [
"crates/ppvm-stim", "crates/stim-parser",
"crates/ppvm-tableau-sum",
"crates/vihaco-circuit-isa",
"crates/ppvm-vihaco",
# Runnable copies of the Rust code blocks in skills/ppvm-usage/SKILL.md.
# Built by `cargo build --workspace --all-targets` in CI so the skill
# can't silently drift away from the public API.
Expand Down
23 changes: 23 additions & 0 deletions crates/ppvm-vihaco/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[package]
name = "ppvm-vihaco"
version = "0.1.0"
edition = "2024"

[dependencies]
bitvec = "1.0.1"
bnum = { version = "0.13.0", features = ["num-traits"] }
chumsky = "0.10.0"
eyre = "0.6.12"
num = "0.4.3"
smallvec = "1.15.1"
ppvm-pauli-sum = { version = "0.1.0", path = "../ppvm-pauli-sum" }
ppvm-tableau = { version = "0.1.0", path = "../ppvm-tableau" }
vihaco = "0.1.1"
vihaco-parser = "0.1.1"
vihaco-parser-core = "0.1.1"
vihaco-circuit-isa = { version = "0.1.0", path = "../vihaco-circuit-isa" }

# chumsky and vihaco-parser-core are pulled in by the vihaco_parser::Parse
# derive on BackendKind; machete can't see macro-expanded usage.
[package.metadata.cargo-machete]
ignored = ["chumsky", "vihaco-parser-core"]
Loading
Loading