microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
source/language_service/Cargo.toml
34lines · modecode
| 1 | [package] |
| 2 | name = "qsls" |
| 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 | indoc = { workspace = true } |
| 14 | tokio = { workspace = true } |
| 15 | serde = { workspace = true } |
| 16 | serde_json = { workspace = true } |
| 17 | |
| 18 | [dependencies] |
| 19 | async-trait = { workspace = true } |
| 20 | futures = { workspace = true } |
| 21 | futures-util = { workspace = true } |
| 22 | log = { workspace = true } |
| 23 | miette = { workspace = true } |
| 24 | qsc = { path = "../compiler/qsc" } |
| 25 | qsc_linter = { path = "../compiler/qsc_linter" } |
| 26 | qsc_project = { path = "../compiler/qsc_project" } |
| 27 | rustc-hash = { workspace = true } |
| 28 | thiserror = { workspace = true } |
| 29 | |
| 30 | [lints] |
| 31 | workspace = true |
| 32 | |
| 33 | [lib] |
| 34 | doctest = false |