microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-2145

Branches

Tags

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

Clone

HTTPS

Download ZIP

compiler/qsc_formatter/Cargo.toml

29lines · 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[lints]
21workspace = true
22
23[lib]
24doctest = false
25
26[[bin]]
27name = "qsc_formatter"
28bench = false
29test = false
30