microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.8.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

compiler/qsc/Cargo.toml

80lines · 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
54test = false
55
56[[bin]]
57name = "qsi"
58bench = false
59test = false
60
61[[bin]]
62name = "memtest"
63bench = false
64test = false
65
66[[bench]]
67name = "large"
68harness = false
69
70[[bench]]
71name = "library"
72harness = false
73
74[[bench]]
75name = "eval"
76harness = false
77
78[[bench]]
79name = "rca"
80harness = false
81