Skip to content
This repository was archived by the owner on Nov 6, 2020. It is now read-only.

Commit 5d5e45e

Browse files
authored
Merge pull request #4870 from ethcore/jsonrpc-dep
Reference JSON-RPC more changes-friendly
2 parents 79afe2d + 429e1c7 commit 5d5e45e

File tree

8 files changed

+40
-40
lines changed

8 files changed

+40
-40
lines changed

Cargo.lock

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

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ app_dirs = "1.1.1"
2525
fdlimit = "0.1"
2626
hyper = { default-features = false, git = "https://github.com/ethcore/hyper" }
2727
ctrlc = { git = "https://github.com/ethcore/rust-ctrlc.git" }
28-
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git" }
28+
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git", branch = "parity-1.6" }
2929
ethsync = { path = "sync" }
3030
ethcore = { path = "ethcore" }
3131
ethcore-util = { path = "util" }

dapps/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ rand = "0.3"
1212
log = "0.3"
1313
env_logger = "0.3"
1414
futures = "0.1"
15-
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git" }
16-
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc.git" }
15+
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git", branch = "parity-1.6" }
16+
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc.git", branch = "parity-1.6" }
1717
hyper = { default-features = false, git = "https://github.com/ethcore/hyper" }
1818
unicase = "1.3"
1919
url = "1.0"

ipfs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Parity Technologies <[email protected]>"]
88
[dependencies]
99
ethcore = { path = "../ethcore" }
1010
ethcore-util = { path = "../util" }
11-
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc.git" }
11+
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc.git", branch = "parity-1.6" }
1212
rlp = { path = "../util/rlp" }
1313
mime = "0.2"
1414
hyper = { default-features = false, git = "https://github.com/ethcore/hyper" }

rpc/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ rustc-serialize = "0.3"
1818
time = "0.1"
1919
transient-hashmap = "0.1"
2020
order-stat = "0.1"
21-
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git" }
22-
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc.git" }
23-
jsonrpc-ipc-server = { git = "https://github.com/ethcore/jsonrpc.git" }
24-
jsonrpc-macros = { git = "https://github.com/ethcore/jsonrpc.git" }
21+
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git", branch = "parity-1.6" }
22+
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc.git", branch = "parity-1.6" }
23+
jsonrpc-ipc-server = { git = "https://github.com/ethcore/jsonrpc.git", branch = "parity-1.6" }
24+
jsonrpc-macros = { git = "https://github.com/ethcore/jsonrpc.git", branch = "parity-1.6" }
2525
ethcore-io = { path = "../util/io" }
2626
ethcore-ipc = { path = "../ipc/rpc" }
2727
ethcore-util = { path = "../util" }

rpc_client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ serde = "0.9"
1414
serde_json = "0.9"
1515
tempdir = "0.3.5"
1616
url = "1.2.0"
17-
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git" }
17+
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git", branch = "parity-1.6" }
1818
ws = { git = "https://github.com/ethcore/ws-rs.git", branch = "mio-upstream-stable" }
1919
ethcore-rpc = { path = "../rpc" }
2020
ethcore-signer = { path = "../signer" }

signer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ rustc_version = "0.1"
1212

1313
[dependencies]
1414
rand = "0.3.14"
15-
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git" }
15+
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git", branch = "parity-1.6" }
1616
log = "0.3"
1717
env_logger = "0.3"
1818
parity-dapps-glue = { version = "1.4", optional = true }

stratum/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ ethcore-ipc-codegen = { path = "../ipc/codegen" }
1111

1212
[dependencies]
1313
log = "0.3"
14-
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git" }
15-
jsonrpc-macros = { git = "https://github.com/ethcore/jsonrpc.git" }
16-
jsonrpc-tcp-server = { git = "https://github.com/ethcore/jsonrpc.git" }
14+
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git", branch = "parity-1.6" }
15+
jsonrpc-macros = { git = "https://github.com/ethcore/jsonrpc.git", branch = "parity-1.6" }
16+
jsonrpc-tcp-server = { git = "https://github.com/ethcore/jsonrpc.git", branch = "parity-1.6" }
1717
mio = { git = "https://github.com/ethcore/mio", branch = "v0.5.x" }
1818
ethcore-util = { path = "../util" }
1919
ethcore-devtools = { path = "../devtools" }

0 commit comments

Comments
 (0)