Skip to content

Commit 92e3c14

Browse files
authored
Use patched ws-rs (#584)
* Use patched ws-rs * Update settings * Bump versions to 16.0.0
1 parent b165fac commit 92e3c14

File tree

15 files changed

+47
-45
lines changed

15 files changed

+47
-45
lines changed

core-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
88
license = "MIT"
99
name = "jsonrpc-core-client"
1010
repository = "https://github.com/paritytech/jsonrpc"
11-
version = "15.0.0"
11+
version = "16.0.0"
1212

1313
categories = [
1414
"asynchronous",
@@ -26,7 +26,7 @@ ipc = ["jsonrpc-client-transports/ipc", "futures01"]
2626
arbitrary_precision = ["jsonrpc-client-transports/arbitrary_precision"]
2727

2828
[dependencies]
29-
jsonrpc-client-transports = { version = "15.0", path = "./transports", default-features = false }
29+
jsonrpc-client-transports = { version = "16.0", path = "./transports", default-features = false }
3030
# Only for client transports, should be removed when we fully transition to futures=0.3
3131
futures01 = { version = "0.1", package = "futures", optional = true }
3232
futures = { version = "0.3", features = [ "compat" ] }

core-client/transports/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
88
license = "MIT"
99
name = "jsonrpc-client-transports"
1010
repository = "https://github.com/paritytech/jsonrpc"
11-
version = "15.0.0"
11+
version = "16.0.0"
1212

1313
categories = [
1414
"asynchronous",
@@ -38,8 +38,8 @@ arbitrary_precision = ["serde_json/arbitrary_precision", "jsonrpc-core/arbitrary
3838
[dependencies]
3939
derive_more = "0.99"
4040
futures = { version = "0.3", features = [ "compat" ] }
41-
jsonrpc-core = { version = "15.0", path = "../../core" }
42-
jsonrpc-pubsub = { version = "15.0", path = "../../pubsub" }
41+
jsonrpc-core = { version = "16.0", path = "../../core" }
42+
jsonrpc-pubsub = { version = "16.0", path = "../../pubsub" }
4343
log = "0.4"
4444
serde = { version = "1.0", features = ["derive"] }
4545
serde_json = "1.0"
@@ -48,15 +48,15 @@ url = "1.7"
4848
futures01 = { version = "0.1.26", package = "futures", optional = true }
4949
hyper = { version = "0.12", optional = true }
5050
hyper-tls = { version = "0.3.2", optional = true }
51-
jsonrpc-server-utils = { version = "15.0", path = "../../server-utils", optional = true }
51+
jsonrpc-server-utils = { version = "16.0", path = "../../server-utils", optional = true }
5252
parity-tokio-ipc = { version = "0.2", optional = true }
5353
tokio = { version = "0.1", optional = true }
5454
websocket = { version = "0.24", optional = true }
5555

5656
[dev-dependencies]
5757
assert_matches = "1.1"
58-
jsonrpc-http-server = { version = "15.0", path = "../../http" }
59-
jsonrpc-ipc-server = { version = "15.0", path = "../../ipc" }
58+
jsonrpc-http-server = { version = "16.0", path = "../../http" }
59+
jsonrpc-ipc-server = { version = "16.0", path = "../../ipc" }
6060
lazy_static = "1.0"
6161
env_logger = "0.7"
6262

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
88
license = "MIT"
99
name = "jsonrpc-core"
1010
repository = "https://github.com/paritytech/jsonrpc"
11-
version = "15.0.0"
11+
version = "16.0.0"
1212

1313
categories = [
1414
"asynchronous",

derive/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ homepage = "https://github.com/paritytech/jsonrpc"
77
license = "MIT"
88
name = "jsonrpc-derive"
99
repository = "https://github.com/paritytech/jsonrpc"
10-
version = "15.0.0"
10+
version = "16.0.0"
1111

1212
[lib]
1313
proc-macro = true
@@ -20,10 +20,10 @@ proc-macro-crate = "0.1.4"
2020

2121
[dev-dependencies]
2222
assert_matches = "1.3"
23-
jsonrpc-core = { version = "15.0", path = "../core" }
24-
jsonrpc-core-client = { version = "15.0", path = "../core-client" }
25-
jsonrpc-pubsub = { version = "15.0", path = "../pubsub" }
26-
jsonrpc-tcp-server = { version = "15.0", path = "../tcp" }
23+
jsonrpc-core = { version = "16.0", path = "../core" }
24+
jsonrpc-core-client = { version = "16.0", path = "../core-client" }
25+
jsonrpc-pubsub = { version = "16.0", path = "../pubsub" }
26+
jsonrpc-tcp-server = { version = "16.0", path = "../tcp" }
2727
serde = { version = "1.0", features = ["derive"] }
2828
serde_json = "1.0"
2929
trybuild = "1.0"

http/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "server"]
88
license = "MIT"
99
name = "jsonrpc-http-server"
1010
repository = "https://github.com/paritytech/jsonrpc"
11-
version = "15.0.0"
11+
version = "16.0.0"
1212

1313
[dependencies]
1414
futures01 = { version = "0.1", package = "futures" }
1515
futures03 = { version = "0.3", package = "futures", features = ["compat"] }
1616
hyper = "0.12"
17-
jsonrpc-core = { version = "15.0", path = "../core" }
18-
jsonrpc-server-utils = { version = "15.0", path = "../server-utils" }
17+
jsonrpc-core = { version = "16.0", path = "../core" }
18+
jsonrpc-server-utils = { version = "16.0", path = "../server-utils" }
1919
log = "0.4"
2020
net2 = "0.2"
2121
parking_lot = "0.10.0"

ipc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ homepage = "https://github.com/paritytech/jsonrpc"
77
license = "MIT"
88
name = "jsonrpc-ipc-server"
99
repository = "https://github.com/paritytech/jsonrpc"
10-
version = "15.0.0"
10+
version = "16.0.0"
1111

1212
[dependencies]
1313
futures01 = { version = "0.1", package = "futures" }
1414
futures03 = { version = "0.3", package = "futures", features = [ "compat" ] }
1515
log = "0.4"
1616
tokio-service = "0.1"
17-
jsonrpc-core = { version = "15.0", path = "../core" }
18-
jsonrpc-server-utils = { version = "15.0", path = "../server-utils" }
17+
jsonrpc-core = { version = "16.0", path = "../core" }
18+
jsonrpc-server-utils = { version = "16.0", path = "../server-utils" }
1919
parity-tokio-ipc = "0.4"
2020
parking_lot = "0.10.0"
2121

pubsub/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"]
88
license = "MIT"
99
name = "jsonrpc-pubsub"
1010
repository = "https://github.com/paritytech/jsonrpc"
11-
version = "15.0.0"
11+
version = "16.0.0"
1212

1313
[dependencies]
1414
futures = { version = "0.3", features = ["thread-pool"] }
15-
jsonrpc-core = { version = "15.0", path = "../core" }
15+
jsonrpc-core = { version = "16.0", path = "../core" }
1616
lazy_static = "1.4"
1717
log = "0.4"
1818
parking_lot = "0.11.0"
1919
rand = "0.7"
2020
serde = "1.0"
2121

2222
[dev-dependencies]
23-
jsonrpc-tcp-server = { version = "15.0", path = "../tcp" }
23+
jsonrpc-tcp-server = { version = "16.0", path = "../tcp" }
2424

2525
[badges]
2626
travis-ci = { repository = "paritytech/jsonrpc", branch = "master"}

pubsub/more-examples/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ name = "jsonrpc-pubsub-examples"
33
description = "Examples of Publish-Subscribe extension for jsonrpc."
44
homepage = "https://github.com/paritytech/jsonrpc"
55
repository = "https://github.com/paritytech/jsonrpc"
6-
version = "15.0.0"
6+
version = "16.0.0"
77
authors = ["tomusdrw <tomasz@parity.io>"]
88
license = "MIT"
99

1010
[dependencies]
11-
jsonrpc-core = { version = "15.0", path = "../../core" }
12-
jsonrpc-pubsub = { version = "15.0", path = "../" }
13-
jsonrpc-ws-server = { version = "15.0", path = "../../ws" }
14-
jsonrpc-ipc-server = { version = "15.0", path = "../../ipc" }
11+
jsonrpc-core = { version = "16.0", path = "../../core" }
12+
jsonrpc-pubsub = { version = "16.0", path = "../" }
13+
jsonrpc-ws-server = { version = "16.0", path = "../../ws" }
14+
jsonrpc-ipc-server = { version = "16.0", path = "../../ipc" }

server-utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
88
license = "MIT"
99
name = "jsonrpc-server-utils"
1010
repository = "https://github.com/paritytech/jsonrpc"
11-
version = "15.0.0"
11+
version = "16.0.0"
1212

1313
[dependencies]
1414
bytes = "0.4"
1515
futures01 = { version = "0.1", package = "futures" }
1616
globset = "0.4"
17-
jsonrpc-core = { version = "15.0", path = "../core" }
17+
jsonrpc-core = { version = "16.0", path = "../core" }
1818
lazy_static = "1.1.0"
1919
log = "0.4"
2020
tokio = { version = "0.1.15" }

stdio/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ homepage = "https://github.com/paritytech/jsonrpc"
77
license = "MIT"
88
name = "jsonrpc-stdio-server"
99
repository = "https://github.com/paritytech/jsonrpc"
10-
version = "15.0.0"
10+
version = "16.0.0"
1111

1212
[dependencies]
1313
futures = { version = "0.3", features = [ "compat" ] }
14-
jsonrpc-core = { version = "15.0", path = "../core" }
14+
jsonrpc-core = { version = "16.0", path = "../core" }
1515
log = "0.4"
1616
tokio = "0.1.7"
1717
tokio-codec = "0.1.0"

0 commit comments

Comments
 (0)