microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
compiler/qsc_doc_gen/Cargo.toml
26lines · modecode
| 1 | [package] |
| 2 | name = "qsc_doc_gen" |
| 3 | |
| 4 | version.workspace = true |
| 5 | authors.workspace = true |
| 6 | edition.workspace = true |
| 7 | homepage.workspace = true |
| 8 | license.workspace = true |
| 9 | repository.workspace = true |
| 10 | |
| 11 | [dev-dependencies] |
| 12 | expect-test = { workspace = true } |
| 13 | |
| 14 | [dependencies] |
| 15 | regex-lite = { workspace = true } |
| 16 | qsc_data_structures = { path = "../qsc_data_structures" } |
| 17 | qsc_frontend = { path = "../qsc_frontend" } |
| 18 | qsc_ast = { path = "../qsc_ast" } |
| 19 | qsc_hir = { path = "../qsc_hir" } |
| 20 | rustc-hash = { workspace = true } |
| 21 | |
| 22 | [lints] |
| 23 | workspace = true |
| 24 | |
| 25 | [lib] |
| 26 | doctest = false |
| 27 | |