microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.2.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

compiler/qsc/Cargo.toml

63lines · 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_eval = { path = "../qsc_eval" }
23qsc_frontend = { path = "../qsc_frontend" }
24qsc_ast = { path = "../qsc_ast" }
25qsc_fir = { path = "../qsc_fir" }
26qsc_hir = { path = "../qsc_hir" }
27qsc_passes = { path = "../qsc_passes" }
28qsc_project = { path = "../qsc_project", features = ["fs"] }
29rustc-hash = { workspace = true }
30thiserror = { workspace = true }
31
32[dev-dependencies]
33criterion = { workspace = true, features = ["cargo_bench_support"] }
34expect-test = { workspace = true }
35indoc = { workspace = true }
36
37[lib]
38bench = false
39doctest = false
40
41[[bin]]
42name = "qsc"
43bench = false
44
45[[bin]]
46name = "qsi"
47bench = false
48
49[[bin]]
50name = "memtest"
51bench = false
52
53[[bench]]
54name = "large"
55harness = false
56
57[[bench]]
58name = "library"
59harness = false
60
61[[bench]]
62name = "eval"
63harness = false
64