microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
iadavis/pipeline-issue-debugging

Branches

Tags

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

Clone

HTTPS

Download ZIP

source/compiler/qsc/Cargo.toml

76lines · modecode

1[package]
2name = "qsc"
3description = "Q# compiler"
4
5version.workspace = true
6authors.workspace = true
7homepage.workspace = true
8repository.workspace = true
9edition.workspace = true
10license.workspace = true
11
12[dependencies]
13env_logger = { workspace = true }
14log = { workspace = true }
15miette = { workspace = true }
16num-bigint = { workspace = true }
17num-complex = { workspace = true }
18qsc_codegen = { path = "../qsc_codegen" }
19qsc_data_structures = { path = "../qsc_data_structures" }
20qsc_doc_gen = { path = "../qsc_doc_gen" }
21qsc_formatter = { path = "../qsc_formatter" }
22qsc_eval = { path = "../qsc_eval" }
23qsc_frontend = { path = "../qsc_frontend" }
24qsc_linter = { path = "../qsc_linter" }
25qsc_lowerer = { path = "../qsc_lowerer" }
26qsc_ast = { path = "../qsc_ast" }
27qsc_fir = { path = "../qsc_fir" }
28qsc_hir = { path = "../qsc_hir" }
29qsc_passes = { path = "../qsc_passes" }
30qsc_parse = { path = "../qsc_parse" }
31qsc_partial_eval = { path = "../qsc_partial_eval" }
32qsc_project = { path = "../qsc_project", features = ["fs"] }
33qsc_openqasm_compiler = { path = "../qsc_openqasm_compiler" }
34qsc_openqasm_parser = { path = "../qsc_openqasm_parser" }
35qsc_rca = { path = "../qsc_rca" }
36qsc_circuit = { path = "../qsc_circuit" }
37rustc-hash = { workspace = true }
38thiserror = { workspace = true }
39allocator = { path = "../../allocator" }
40
41[dev-dependencies]
42criterion = { workspace = true, features = ["cargo_bench_support"] }
43expect-test = { workspace = true }
44indoc = { workspace = true }
45
46[lints]
47workspace = true
48
49[lib]
50bench = false
51doctest = false
52
53[[bin]]
54name = "memtest"
55bench = false
56test = false
57
58[[bench]]
59name = "large"
60harness = false
61
62[[bench]]
63name = "library"
64harness = false
65
66[[bench]]
67name = "eval"
68harness = false
69
70[[bench]]
71name = "rca"
72harness = false
73
74[[bench]]
75name = "typeck"
76harness = false
77