Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit 674b272

Browse files
committed
Use crates.io version for jsonrpc-* crates
1 parent d5cdd8a commit 674b272

File tree

3 files changed

+29
-28
lines changed

3 files changed

+29
-28
lines changed

Cargo.lock

+24-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-8
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,6 @@ name = "rls"
2020
test = false
2121
path = "rls/src/main.rs"
2222

23-
[patch.crates-io]
24-
parity-tokio-ipc = { git = "https://github.com/Xanewok/parity-tokio-ipc", branch = "mio-07" }
25-
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc", branch = "igor-tokio-1.0" }
26-
jsonrpc-core-client = { git = "https://github.com/paritytech/jsonrpc", branch = "igor-tokio-1.0" }
27-
jsonrpc-derive = { git = "https://github.com/paritytech/jsonrpc", branch = "igor-tokio-1.0" }
28-
jsonrpc-ipc-server = { git = "https://github.com/paritytech/jsonrpc", branch = "igor-tokio-1.0" }
29-
3023
[dependencies]
3124
# FIXME: Release rls-analysis 0.18.2 to crates.io
3225
rls-analysis = { version = "0.18.2", path = "rls-analysis" }
@@ -45,7 +38,7 @@ clippy_lints = { git = "https://github.com/rust-lang/rust-clippy", rev = "a55912
4538
env_logger = "0.7"
4639
home = "0.5.1"
4740
itertools = "0.9"
48-
jsonrpc-core = "17"
41+
jsonrpc-core = "18"
4942
lsp-types = { version = "0.60", features = ["proposed"] }
5043
lazy_static = "1"
5144
log = "0.4"

rls-ipc/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ repository = "https://github.com/rust-lang/rls"
99
categories = ["development-tools"]
1010

1111
[dependencies]
12-
jsonrpc-core = "17"
13-
jsonrpc-core-client = "17"
14-
jsonrpc-derive = "17"
15-
jsonrpc-ipc-server = { version = "17", optional = true }
12+
jsonrpc-core = "18"
13+
jsonrpc-core-client = "18"
14+
jsonrpc-derive = "18"
15+
jsonrpc-ipc-server = { version = "18", optional = true }
1616
rls-data = "0.19"
1717
serde = { version = "1.0", features = ["derive"] }
1818

0 commit comments

Comments
 (0)