microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
alex/pythontelem

Branches

Tags

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

Clone

HTTPS

Download ZIP

compiler/qsc_formatter/Cargo.toml

27lines · modecode

1[package]
2name = "qsc_formatter"
3
4version.workspace = true
5authors.workspace = true
6homepage.workspace = true
7repository.workspace = true
8edition.workspace = true
9license.workspace = true
10
11[dependencies]
12clap = { workspace = true, features = ["derive", "cargo"] }
13qsc_data_structures = { path = "../qsc_data_structures" }
14qsc_frontend = { path = "../qsc_frontend" }
15
16[dev-dependencies]
17expect-test = { workspace = true }
18indoc = { workspace = true }
19
20[lib]
21doctest = false
22
23[[bin]]
24name = "qsc_formatter"
25bench = false
26test = false
27
28