1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

chore: pin lsp types due to unstable "proposed" feature (#16467)

The "proposed" feature that we depend upon in tower-lsp, turns on the
"proposed" feature in lsp-types which has breaking changes in patch
releases because it's explicitly unstable. We need to pin it to prevent
it breaking cargo publish.
This commit is contained in:
David Sherret 2022-10-28 11:38:56 -04:00 committed by GitHub
parent 065f9cc767
commit 5cd82b84bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

1
Cargo.lock generated
View file

@ -814,6 +814,7 @@ dependencies = [
"junction",
"libc",
"log",
"lsp-types",
"mitata",
"monch",
"napi_sym",

View file

@ -84,6 +84,7 @@ indicatif = "=0.17.1"
jsonc-parser = { version = "=0.21.0", features = ["serde"] }
libc = "=0.2.126"
log = { version = "=0.4.17", features = ["serde"] }
lsp-types = "=0.93.2" # used by tower-lsp and "proposed" feature is unstable in patch releases
mitata = "=0.0.7"
monch = "=0.2.1"
notify = "=5.0.0"