Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-completion/Cargo.toml')
| -rw-r--r-- | crates/ide-completion/Cargo.toml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/crates/ide-completion/Cargo.toml b/crates/ide-completion/Cargo.toml index 7ab44d92b9..d0d0de0966 100644 --- a/crates/ide-completion/Cargo.toml +++ b/crates/ide-completion/Cargo.toml @@ -18,18 +18,20 @@ itertools = "0.10.5" once_cell = "1.15.0" smallvec = "1.10.0" -stdx = { path = "../stdx", version = "0.0.0" } -syntax = { path = "../syntax", version = "0.0.0" } -text-edit = { path = "../text-edit", version = "0.0.0" } -base-db = { path = "../base-db", version = "0.0.0" } -ide-db = { path = "../ide-db", version = "0.0.0" } -profile = { path = "../profile", version = "0.0.0" } +# local deps +base-db.workspace = true +ide-db.workspace = true +profile.workspace = true +stdx.workspace = true +syntax.workspace = true +text-edit.workspace = true # completions crate should depend only on the top-level `hir` package. if you need # something from some `hir-xxx` subpackage, reexport the API via `hir`. -hir = { path = "../hir", version = "0.0.0" } +hir.workspace = true [dev-dependencies] expect-test = "1.4.0" -test-utils = { path = "../test-utils" } +# local deps +test-utils.workspace = true |