diff options
| author | Alex Kladov <aleksey.kladov@gmail.com> | 2023-08-21 14:29:18 +0100 |
|---|---|---|
| committer | Alex Kladov <aleksey.kladov@gmail.com> | 2023-08-21 14:29:18 +0100 |
| commit | 343ee8bacf6f4f26dd4932a3effa1785548a2e56 (patch) | |
| tree | bafec4ae8f4f9a9b2cfab408b400482c7023a86c /lib | |
| parent | 9b3d03408c66749d56466bb09baf2a7177deb6ce (diff) | |
| download | rust-343ee8bacf6f4f26dd4932a3effa1785548a2e56.tar.gz rust-343ee8bacf6f4f26dd4932a3effa1785548a2e56.zip | |
internal: unpin serde
Sered no longer uses blobs as of https://github.com/serde-rs/serde/pull/2590 As such, there's no longer need for us to pin it. Note that this doesn't upgrade serde version we use: I am fairly confident that the blobs are already there are fine, and now I am fairly confident that all future versions of serde will be fine as well.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/lsp-server/Cargo.toml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/lsp-server/Cargo.toml b/lib/lsp-server/Cargo.toml index e1c49db39d5..7ec3247e943 100644 --- a/lib/lsp-server/Cargo.toml +++ b/lib/lsp-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lsp-server" -version = "0.7.3" +version = "0.7.4" description = "Generic LSP server scaffold." license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/rust-analyzer/tree/master/lib/lsp-server" @@ -9,8 +9,7 @@ edition = "2021" [dependencies] log = "0.4.17" serde_json = "1.0.96" -# See https://github.com/serde-rs/serde/issues/2538#issuecomment-1684517372 for why we pin serde -serde = { version = "1.0.156, < 1.0.172", features = ["derive"] } +serde = { version = "1.0.156", features = ["derive"] } crossbeam-channel = "0.5.6" [dev-dependencies] |
