microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
cd67b36992d2ea20ba330acb56e2e9ac04c11938

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

compiler/qsc_eval/Cargo.toml

26lines · modecode

1[package]
2name = "qsc_eval"
3version = "0.0.0"
4
5authors.workspace = true
6homepage.workspace = true
7repository.workspace = true
8edition.workspace = true
9license.workspace = true
10
11[dependencies]
12miette = { workspace = true }
13num-bigint = { workspace = true }
14num-complex = { workspace = true }
15quantum-sparse-sim = { workspace = true }
16qsc_data_structures = { path = "../qsc_data_structures" }
17qsc_fir = { path = "../qsc_fir" }
18qsc_hir = { path = "../qsc_hir" }
19rand = { workspace = true }
20thiserror = { workspace = true }
21
22[dev-dependencies]
23expect-test = { workspace = true }
24indoc = { workspace = true }
25qsc_frontend = { path = "../qsc_frontend" }
26qsc_passes = { path = "../qsc_passes" }
27