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