mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -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:
parent
065f9cc767
commit
5cd82b84bb
2 changed files with 2 additions and 0 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -814,6 +814,7 @@ dependencies = [
|
||||||
"junction",
|
"junction",
|
||||||
"libc",
|
"libc",
|
||||||
"log",
|
"log",
|
||||||
|
"lsp-types",
|
||||||
"mitata",
|
"mitata",
|
||||||
"monch",
|
"monch",
|
||||||
"napi_sym",
|
"napi_sym",
|
||||||
|
|
|
@ -84,6 +84,7 @@ indicatif = "=0.17.1"
|
||||||
jsonc-parser = { version = "=0.21.0", features = ["serde"] }
|
jsonc-parser = { version = "=0.21.0", features = ["serde"] }
|
||||||
libc = "=0.2.126"
|
libc = "=0.2.126"
|
||||||
log = { version = "=0.4.17", features = ["serde"] }
|
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"
|
mitata = "=0.0.7"
|
||||||
monch = "=0.2.1"
|
monch = "=0.2.1"
|
||||||
notify = "=5.0.0"
|
notify = "=5.0.0"
|
||||||
|
|
Loading…
Reference in a new issue