microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
compiler/qsc_frontend/Cargo.toml
29lines · modecode
| 1 | [package] |
| 2 | name = "qsc_frontend" |
| 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 | miette = { workspace = true } |
| 13 | qsc_data_structures = { path = "../qsc_data_structures" } |
| 14 | qsc_ast = { path = "../qsc_ast" } |
| 15 | qsc_hir = { path = "../qsc_hir" } |
| 16 | qsc_parse = { path = "../qsc_parse" } |
| 17 | library = { path = "../../library" } |
| 18 | rustc-hash = { workspace = true } |
| 19 | thiserror = { workspace = true } |
| 20 | |
| 21 | [dev-dependencies] |
| 22 | expect-test = { workspace = true } |
| 23 | indoc = { workspace = true } |
| 24 | |
| 25 | [lints] |
| 26 | workspace = true |
| 27 | |
| 28 | [lib] |
| 29 | doctest = false |
| 30 | |