microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.3.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

compiler/qsc/Cargo.toml

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