Skip to content

Commit e6f3a82

Browse files
authored
* Update to rc6. * Update runtime. * Update node to rc6. * Update client. * Fix node. * Add option to enable telemetry.
1 parent cd6b8f4 commit e6f3a82

File tree

12 files changed

+596
-480
lines changed

12 files changed

+596
-480
lines changed

Cargo.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,37 +20,37 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
2020
client = ["substrate-subxt-client"]
2121

2222
[dependencies]
23-
log = "0.4.8"
23+
log = "0.4.11"
2424
thiserror = "1.0.20"
2525
futures = "0.3.5"
2626
jsonrpsee = { version = "0.1.0", features = ["ws"] }
2727
num-traits = { version = "0.2.12", default-features = false }
2828
serde = { version = "1.0.114", features = ["derive"] }
29-
serde_json = "1.0.55"
29+
serde_json = "1.0.56"
3030
url = "2.1.1"
3131
codec = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive", "full"] }
3232

33-
frame-metadata = { version = "11.0.0-rc4", package = "frame-metadata" }
34-
frame-support = { version = "2.0.0-rc4", package = "frame-support" }
35-
sp-runtime = { version = "2.0.0-rc4", package = "sp-runtime" }
36-
sp-version = { version = "2.0.0-rc4", package = "sp-version" }
37-
pallet-indices = { version = "2.0.0-rc4", package = "pallet-indices" }
33+
frame-metadata = { version = "11.0.0-rc5", package = "frame-metadata" }
34+
frame-support = { version = "2.0.0-rc5", package = "frame-support" }
35+
sp-runtime = { version = "2.0.0-rc5", package = "sp-runtime" }
36+
sp-version = { version = "2.0.0-rc5", package = "sp-version" }
37+
pallet-indices = { version = "2.0.0-rc5", package = "pallet-indices" }
3838
hex = "0.4.2"
39-
sp-rpc = { version = "2.0.0-rc4", package = "sp-rpc" }
40-
sp-core = { version = "2.0.0-rc4", package = "sp-core" }
41-
sc-rpc-api = { version = "0.8.0-rc4", package = "sc-rpc-api" }
42-
sp-transaction-pool = { version = "2.0.0-rc4", package = "sp-transaction-pool" }
39+
sp-rpc = { version = "2.0.0-rc5", package = "sp-rpc" }
40+
sp-core = { version = "2.0.0-rc5", package = "sp-core" }
41+
sc-rpc-api = { version = "0.8.0-rc5", package = "sc-rpc-api" }
42+
sp-transaction-pool = { version = "2.0.0-rc5", package = "sp-transaction-pool" }
4343
substrate-subxt-client = { version = "0.2.0", path = "client", optional = true }
4444
substrate-subxt-proc-macro = { version = "0.9.0", path = "proc-macro" }
4545

4646
[dev-dependencies]
47-
async-std = { version = "=1.5.0", features = ["attributes"] }
47+
async-std = { version = "1.6.2", features = ["attributes"] }
4848
env_logger = "0.7.1"
49-
wabt = "0.9.2"
50-
wabt-sys = "=0.7.1" # pinned because 0.7.2 fails to compile
51-
frame-system = { version = "2.0.0-rc4", package = "frame-system" }
52-
pallet-balances = { version = "2.0.0-rc4", package = "pallet-balances" }
53-
sp-keyring = { version = "2.0.0-rc4", package = "sp-keyring" }
49+
frame-system = { version = "2.0.0-rc5", package = "frame-system" }
50+
pallet-balances = { version = "2.0.0-rc5", package = "pallet-balances" }
51+
sp-keyring = { version = "2.0.0-rc5", package = "sp-keyring" }
5452
substrate-subxt-client = { version = "0.2.0", path = "client" }
5553
tempdir = "0.3.7"
5654
test-node = { path = "test-node" }
55+
wabt = "0.9.2"
56+
wabt-sys = "0.7.2"

client/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ description = "Embed a substrate node into your subxt application."
1212
keywords = ["parity", "substrate", "blockchain"]
1313

1414
[dependencies]
15-
async-std = "=1.5.0"
15+
async-std = "1.6.2"
1616
futures = { version = "0.3.5", features = ["compat"] }
1717
futures01 = { package = "futures", version = "0.1.29" }
1818
jsonrpsee = "0.1.0"
19-
log = "0.4.8"
20-
sc-network = { version = "0.8.0-rc4", default-features = false }
21-
sc-service = { version = "0.8.0-rc4", default-features = false }
22-
serde_json = "1.0.55"
23-
sp-keyring = "2.0.0-rc4"
19+
log = "0.4.11"
20+
sc-network = { version = "0.8.0-rc5", default-features = false }
21+
sc-service = { version = "0.8.0-rc5", default-features = false }
22+
serde_json = "1.0.56"
23+
sp-keyring = "2.0.0-rc5"
2424
thiserror = "1.0.20"
2525

2626
[dev-dependencies]
27-
async-std = { version = "=1.5.0", features = ["attributes"] }
27+
async-std = { version = "1.6.2", features = ["attributes"] }
2828
env_logger = "0.7.1"
2929
substrate-subxt = { path = ".." }
3030
tempdir = "0.3.7"

0 commit comments

Comments
 (0)