Skip to content

Commit c92e8d2

Browse files
authored
Merge pull request #37 from qsharp-community/quantikz
[WIP] Added support for rendering circuits into quantikz
2 parents 38875ae + bfc4057 commit c92e8d2

10 files changed

Lines changed: 914 additions & 37 deletions

File tree

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,7 @@ platforms/swift/Qsharp.Bridge/Libs/qsharp_bridge_framework.xcframework
3636
platforms/swift/Qsharp.Bridge/.swiftpm/xcode/xcuserdata/filipw.xcuserdatad/xcschemes/xcschememanagement.plist
3737
platforms/swift/Qsharp.Bridge/Sources/Qsharp.Bridge/qsharp_bridge.swift
3838
qsharp-bridge.sln
39-
platforms/python/qsharp-bridge/__pycache__/
39+
platforms/python/qsharp-bridge/__pycache__/
40+
*.aux
41+
*.tex
42+
*.log

Cargo.lock

Lines changed: 45 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@ edition = "2024"
99
crate-type = ["lib", "cdylib", "staticlib"]
1010

1111
[dependencies]
12-
qsc = { git = "https://github.com/microsoft/qdk.git", tag = "v1.22.0" }
13-
resource_estimator = { git = "https://github.com/microsoft/qdk.git", tag = "v1.22.0" }
12+
qsc = { git = "https://github.com/microsoft/qdk.git", branch = "main" }
13+
qsc_eval = { git = "https://github.com/microsoft/qdk.git", branch = "main" }
14+
qsc_circuit = { git = "https://github.com/microsoft/qdk.git", branch = "main" }
15+
resource_estimator = { git = "https://github.com/microsoft/qdk.git", branch = "main" }
1416
thiserror = "1.0"
1517
num-bigint = "0.4.5"
1618
num-complex = "0.4"
1719
uniffi = { version = "0.29.4", features=["build"] }
20+
expect-test = "1.4"
1821

1922
[dev-dependencies]
2023
serde = { version = "1.0", features = ["derive"] }

0 commit comments

Comments
 (0)