microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
alex/telemmocks

Branches

Tags

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

Clone

HTTPS

Download ZIP

compiler/qsc_eval/Cargo.toml

35lines · modecode

1[package]
2name = "qsc_eval"
3
4version.workspace = true
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 }
15num-traits = { workspace = true }
16quantum-sparse-sim = { workspace = true }
17qsc_data_structures = { path = "../qsc_data_structures" }
18qsc_fir = { path = "../qsc_fir" }
19qsc_hir = { path = "../qsc_hir" }
20qsc_lowerer = { path = "../qsc_lowerer" }
21rand = { workspace = true }
22rustc-hash = { workspace = true }
23thiserror = { workspace = true }
24
25[dev-dependencies]
26expect-test = { workspace = true }
27indoc = { workspace = true }
28qsc_frontend = { path = "../qsc_frontend" }
29qsc_passes = { path = "../qsc_passes" }
30
31[lints]
32workspace = true
33
34[lib]
35doctest = false
36