diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-10-28 11:38:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-28 11:38:56 -0400 |
commit | 5cd82b84bb46e911d4465614cb9ee97bddd803a2 (patch) | |
tree | 31eaa159619bb24e91345323531526e79df86d51 | |
parent | 065f9cc767153144429dfdab3feae06c10cfcbfc (diff) |
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.
-rw-r--r-- | Cargo.lock | 1 | ||||
-rw-r--r-- | cli/Cargo.toml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index 29091e9dc..ae2520624 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -814,6 +814,7 @@ dependencies = [ "junction", "libc", "log", + "lsp-types", "mitata", "monch", "napi_sym", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9fb7e81a2..53216afa0 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -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" |