Bump jsonrpc-* to v15

This commit is contained in:
draganrakita 2020-09-21 11:36:28 +02:00 committed by Adria Massanet
parent 1c82a0733f
commit 4fb4ef6d24
7 changed files with 712 additions and 533 deletions

1219
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -30,7 +30,7 @@ futures = "0.1"
hyper = { version = "0.12" }
fdlimit = "0.1"
ctrlc = { git = "https://github.com/paritytech/rust-ctrlc.git" }
jsonrpc-core = "14.0.0"
jsonrpc-core = "15.0.0"
parity-bytes = "0.1"
common-types = { path = "ethcore/types" }
ethcore = { path = "ethcore", features = ["parity"] }

View File

@ -15,7 +15,7 @@ serde_json = "1.0"
url = "2"
matches = "0.1"
parking_lot = "0.9"
jsonrpc-core = "14.0.3"
jsonrpc-ws-server = "14.0.3"
jsonrpc-core = "15.0.0"
jsonrpc-ws-server = "15.0.0"
parity-rpc = { path = "../../rpc" }
keccak-hash = "0.1"

View File

@ -8,8 +8,8 @@ authors = ["Parity Technologies <admin@parity.io>"]
[dependencies]
ethereum-types = "0.4"
keccak-hash = "0.1"
jsonrpc-core = "14.0.3"
jsonrpc-tcp-server = "14.0.3"
jsonrpc-core = "15.0.0"
jsonrpc-tcp-server = "15.0.0"
log = "0.4"
parking_lot = "0.7"

View File

@ -24,12 +24,12 @@ tokio-timer = "0.1"
transient-hashmap = "0.4"
itertools = "0.5"
jsonrpc-core = "14.0.3"
jsonrpc-derive = "14.0.3"
jsonrpc-http-server = "14.0.3"
jsonrpc-ws-server = "14.0.3"
jsonrpc-ipc-server = "14.0.3"
jsonrpc-pubsub = "14.0.3"
jsonrpc-core = "15.0.0"
jsonrpc-derive = "15.0.0"
jsonrpc-http-server = "15.0.0"
jsonrpc-ws-server = "15.0.0"
jsonrpc-ipc-server = "15.0.0"
jsonrpc-pubsub = "15.0.0"
common-types = { path = "../ethcore/types" }
ethash = { path = "../ethash" }

View File

@ -37,7 +37,7 @@ tokio-io = "0.1"
tokio-service = "0.1"
url = "2"
percent-encoding = "2"
jsonrpc-server-utils = "14.0.3"
jsonrpc-server-utils = "15.0.0"
[dev-dependencies]
env_logger = "0.5"

View File

@ -17,7 +17,7 @@ serde_json = "1.0"
ethabi = "6.0"
keccak-hash = "0.1"
ethereum-types = "0.4"
failure = "0.1"
failure = "0.1.7"
itertools = "0.7"
lazy_static = "1.1"
regex = "1.0"