Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index 3050cf764a..f34809a1cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,7 +75,11 @@ toolchain = { path = "./crates/toolchain", version = "0.0.0" } tt = { path = "./crates/tt", version = "0.0.0" } vfs-notify = { path = "./crates/vfs-notify", version = "0.0.0" } vfs = { path = "./crates/vfs", version = "0.0.0" } -line-index = { version = "0.1.0-pre.1", path = "./lib/line-index" } + +# In-tree crates that are published separately and follow semver. +line-index = { version = "0.1.0-pre.1", path = "lib/line-index" } +la-arena = { version = "0.3.1", path = "lib/la-arena" } +lsp-server = { version = "0.7.1", path = "lib/lsp-server" } # non-local crates smallvec = { version = "1.10.0", features = [ |