Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions .github/change-filters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ rust:
- "badger-optimiser/**"
- "compile-rewriter/**"
- "tket1-passes/**"
- "tket-qec/**"

python:
- *rust-core
Expand Down
9 changes: 9 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 @@ -11,6 +11,7 @@ members = [
"tket-qsystem",
"tket1-passes",
"qis-compiler",
"tket-qec",
]
default-members = ["tket", "tket-qsystem"]

Expand Down
22 changes: 22 additions & 0 deletions tket-qec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[package]
name = "tket-qec"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true

license.workspace = true
readme = "README.md"
# documentation = "https://docs.rs/tket-qec"
homepage.workspace = true
repository.workspace = true
description = "HUGR extensions for logical operations on QEC codes."
keywords = ["Quantum", "Quantinuum"]
categories = ["compilers"]

[lints]
workspace = true

[dependencies]
hugr.workspace = true
semver = "1.0.27"
strum = { workspace = true, features = ["derive"] }
9 changes: 9 additions & 0 deletions tket-qec/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# tket-qec

HUGR extensions for logical operations on QEC codes.

## License

This project is licensed under Apache License, Version 2.0 ([LICENSE][] or <http://www.apache.org/licenses/LICENSE-2.0>).

[LICENSE]: https://github.com/quantinuum/tket2/blob/main/LICENCE
3 changes: 3 additions & 0 deletions tket-qec/src/iceberg.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
//! HUGR extension for logical operations on the Iceberg code.
pub mod ops;
pub mod types;
Loading
Loading