microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
alex/telemmocks

Branches

Tags

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

Clone

HTTPS

Download ZIP

compiler/qsc/Cargo.toml

81lines · 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-no-syscall"] }
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_parse = { path = "../qsc_parse" }
32qsc_partial_eval = { path = "../qsc_partial_eval" }
33qsc_project = { path = "../qsc_project", features = ["fs"] }
34qsc_rca = { path = "../qsc_rca" }
35qsc_circuit = { path = "../qsc_circuit" }
36rustc-hash = { workspace = true }
37thiserror = { workspace = true }
38allocator = { path = "../../allocator" }
39
40[dev-dependencies]
41criterion = { workspace = true, features = ["cargo_bench_support"] }
42expect-test = { workspace = true }
43indoc = { workspace = true }
44
45[lints]
46workspace = true
47
48[lib]
49bench = false
50doctest = false
51
52[[bin]]
53name = "qsc"
54bench = false
55test = false
56
57[[bin]]
58name = "qsi"
59bench = false
60test = false
61
62[[bin]]
63name = "memtest"
64bench = false
65test = false
66
67[[bench]]
68name = "large"
69harness = false
70
71[[bench]]
72name = "library"
73harness = false
74
75[[bench]]
76name = "eval"
77harness = false
78
79[[bench]]
80name = "rca"
81harness = false
82