microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
alex/second-api-refactor

Branches

Tags

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

Clone

HTTPS

Download ZIP

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]
13clap = { workspace = true, features = ["derive", "cargo"] }
14env_logger = { workspace = true }
15log = { workspace = true }
16miette = { workspace = true, features = ["fancy"] }
17num-bigint = { workspace = true }
18num-complex = { workspace = true }
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_partial_eval = { path = "../qsc_partial_eval" }
32qsc_project = { path = "../qsc_project", features = ["fs"] }
33qsc_rca = { path = "../qsc_rca" }
34qsc_circuit = { path = "../qsc_circuit" }
35rustc-hash = { workspace = true }
36thiserror = { workspace = true }
37allocator = { path = "../../allocator" }
38
39[dev-dependencies]
40criterion = { workspace = true, features = ["cargo_bench_support"] }
41expect-test = { workspace = true }
42indoc = { workspace = true }
43
44[lints]
45workspace = true
46
47[lib]
48bench = false
49doctest = false
50
51[[bin]]
52name = "qsc"
53bench = false
54
55[[bin]]
56name = "qsi"
57bench = false
58
59[[bin]]
60name = "memtest"
61bench = false
62
63[[bench]]
64name = "large"
65harness = false
66
67[[bench]]
68name = "library"
69harness = false
70
71[[bench]]
72name = "eval"
73harness = false
74
75[[bench]]
76name = "rca"
77harness = false
78