microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fedimser/permutation

Branches

Tags

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

Clone

HTTPS

Download ZIP

source/compiler/qsc/Cargo.toml

77lines · 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 }
18qdk_simulators = { path = "../../simulators" }
19qsc_codegen = { path = "../qsc_codegen" }
20qsc_data_structures = { path = "../qsc_data_structures" }
21qsc_doc_gen = { path = "../qsc_doc_gen" }
22qsc_formatter = { path = "../qsc_formatter" }
23qsc_eval = { path = "../qsc_eval" }
24qsc_frontend = { path = "../qsc_frontend" }
25qsc_linter = { path = "../qsc_linter" }
26qsc_lowerer = { path = "../qsc_lowerer" }
27qsc_ast = { path = "../qsc_ast" }
28qsc_fir = { path = "../qsc_fir" }
29qsc_hir = { path = "../qsc_hir" }
30qsc_passes = { path = "../qsc_passes" }
31qsc_parse = { path = "../qsc_parse" }
32qsc_partial_eval = { path = "../qsc_partial_eval" }
33qsc_project = { path = "../qsc_project", features = ["fs"] }
34qsc_openqasm_compiler = { path = "../qsc_openqasm_compiler" }
35qsc_openqasm_parser = { path = "../qsc_openqasm_parser" }
36qsc_rca = { path = "../qsc_rca" }
37qsc_circuit = { path = "../qsc_circuit" }
38rustc-hash = { workspace = true }
39thiserror = { workspace = true }
40allocator = { path = "../../allocator" }
41
42[dev-dependencies]
43criterion = { workspace = true, features = ["cargo_bench_support"] }
44expect-test = { workspace = true }
45indoc = { workspace = true }
46
47[lints]
48workspace = true
49
50[lib]
51bench = false
52doctest = false
53
54[[bin]]
55name = "memtest"
56bench = false
57test = false
58
59[[bench]]
60name = "large"
61harness = false
62
63[[bench]]
64name = "library"
65harness = false
66
67[[bench]]
68name = "eval"
69harness = false
70
71[[bench]]
72name = "rca"
73harness = false
74
75[[bench]]
76name = "typeck"
77harness = false
78