microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dmitryv/select-updated

Branches

Tags

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

Clone

HTTPS

Download ZIP

compiler/qsc/Cargo.toml

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