Skip to content

Commit 6175cb7

Browse files
authored
Upgrade dependencies, bumps substrate to 2.0.1 (#219)
* Upgrade dependencies, bumps substrate to 2.0.1 * Upgrade test-node dependencies * Upgrade client dependencies * Upgrade proc-macro dependencies * Revert futures01 dependency * Upgrade futures * Remove redundant package specifiers
1 parent 5595b1e commit 6175cb7

File tree

4 files changed

+66
-66
lines changed

4 files changed

+66
-66
lines changed

Cargo.toml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -24,39 +24,39 @@ client = ["substrate-subxt-client"]
2424
integration-tests = []
2525

2626
[dependencies]
27-
log = "0.4.11"
28-
thiserror = "1.0.20"
29-
futures = "0.3.5"
27+
log = "0.4.13"
28+
thiserror = "1.0.23"
29+
futures = "0.3.10"
3030
jsonrpsee = { version = "0.1.0", features = ["ws"] }
31-
num-traits = { version = "0.2.12", default-features = false }
32-
serde = { version = "1.0.115", features = ["derive"] }
33-
serde_json = "1.0.57"
34-
url = "2.1.1"
35-
codec = { package = "parity-scale-codec", version = "1.3.5", default-features = false, features = ["derive", "full"] }
36-
37-
frame-metadata = { version = "12", package = "frame-metadata" }
38-
frame-support = { version = "2.0.0", package = "frame-support" }
39-
sp-runtime = { version = "2.0.0", package = "sp-runtime" }
40-
sp-version = { version = "2.0.0", package = "sp-version" }
41-
pallet-indices = { version = "2.0.0", package = "pallet-indices" }
31+
num-traits = { version = "0.2.14", default-features = false }
32+
serde = { version = "1.0.119", features = ["derive"] }
33+
serde_json = "1.0.61"
34+
url = "2.2.0"
35+
codec = { package = "parity-scale-codec", version = "1.3.6", default-features = false, features = ["derive", "full"] }
36+
37+
frame-metadata = "12.0.1"
38+
frame-support = "2.0.1"
39+
sp-runtime = "2.0.1"
40+
sp-version = "2.0.1"
41+
pallet-indices = "2.0.1"
4242
hex = "0.4.2"
43-
sp-std = "2.0.0"
44-
application-crypto = { version = "2.0.0", package = "sp-application-crypto" }
45-
pallet-staking = "2.0.0"
43+
sp-std = "2.0.1"
44+
application-crypto = { version = "2.0.1", package = "sp-application-crypto" }
45+
pallet-staking = "2.0.1"
4646

47-
sp-rpc = { version = "2.0.0", package = "sp-rpc" }
48-
sp-core = { version = "2.0.0", package = "sp-core" }
47+
sp-rpc = { version = "2.0.1", package = "sp-rpc" }
48+
sp-core = { version = "2.0.1", package = "sp-core" }
4949
substrate-subxt-client = { version = "0.5.0", path = "client", optional = true }
5050
substrate-subxt-proc-macro = { version = "0.13.0", path = "proc-macro" }
5151

5252
[dev-dependencies]
53-
async-std = { version = "1.6.4", features = ["attributes"] }
54-
env_logger = "0.7.1"
55-
frame-system = { version = "2.0.0", package = "frame-system" }
56-
pallet-balances = { version = "2.0.0", package = "pallet-balances" }
57-
sp-keyring = { version = "2.0.0", package = "sp-keyring" }
53+
async-std = { version = "1.8.0", features = ["attributes"] }
54+
env_logger = "0.8.2"
55+
frame-system = "2.0.1"
56+
pallet-balances = "2.0.1"
57+
sp-keyring = "2.0.1"
5858
substrate-subxt-client = { version = "0.5.0", path = "client" }
5959
tempdir = "0.3.7"
6060
test-node = { path = "test-node" }
6161
wabt = "0.10.0"
62-
assert_matches = "1.3"
62+
assert_matches = "1.4.0"

client/Cargo.toml

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

1414
[dependencies]
15-
async-std = "1.6.4"
16-
futures = { version = "0.3.5", features = ["compat"] }
15+
async-std = "1.8.0"
16+
futures = { version = "0.3.9", features = ["compat"], package = "futures" }
1717
futures01 = { package = "futures", version = "0.1.29" }
1818
jsonrpsee = "0.1.0"
19-
log = "0.4.11"
20-
sc-network = { version = "0.8.0", default-features = false }
21-
sc-service = { version = "0.8.0", default-features = false }
22-
serde_json = "1.0.57"
23-
sp-keyring = "2.0.0"
24-
thiserror = "1.0.20"
19+
log = "0.4.13"
20+
sc-network = { version = "0.8.1", default-features = false }
21+
sc-service = { version = "0.8.1", default-features = false }
22+
serde_json = "1.0.61"
23+
sp-keyring = "2.0.1"
24+
thiserror = "1.0.23"
2525

2626
[dev-dependencies]
27-
async-std = { version = "1.6.4", features = ["attributes"] }
28-
env_logger = "0.7.1"
27+
async-std = { version = "1.8.0", features = ["attributes"] }
28+
env_logger = "0.8.2"
2929
substrate-subxt = { path = ".." }
3030
tempdir = "0.3.7"
3131
test-node = { path = "../test-node" }

proc-macro/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ description = "Derive calls, events, storage and tests for interacting Substrate
1515
proc-macro = true
1616

1717
[dependencies]
18-
heck = "0.3.1"
19-
proc-macro2 = "1.0.19"
18+
heck = "0.3.2"
19+
proc-macro2 = "1.0.24"
2020
proc-macro-crate = "0.1.5"
2121
proc-macro-error = "1.0.4"
22-
quote = "1.0.7"
23-
syn = "1.0.38"
22+
quote = "1.0.8"
23+
syn = "1.0.58"
2424
synstructure = "0.12.4"
2525

2626
[dev-dependencies]
27-
async-std = { version = "1.6.4", features = ["attributes"] }
28-
codec = { package = "parity-scale-codec", version = "1.3.5", features = ["derive"] }
29-
env_logger = "0.7.1"
27+
async-std = { version = "1.8.0", features = ["attributes"] }
28+
codec = { package = "parity-scale-codec", version = "1.3.6", features = ["derive"] }
29+
env_logger = "0.8.2"
3030
pretty_assertions = "0.6.1"
31-
sp-keyring = "2.0.0"
31+
sp-keyring = "2.0.1"
3232
substrate-subxt = { path = ".." }
33-
trybuild = "1.0.32"
33+
trybuild = "1.0.38"
3434

3535
[[test]]
3636
name = "balances"

test-node/Cargo.toml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -13,30 +13,30 @@ repository = "https://github.com/paritytech/substrate/"
1313
targets = ["x86_64-unknown-linux-gnu"]
1414

1515
[dependencies]
16-
futures = "0.3.5"
17-
log = "0.4.11"
18-
structopt = "0.3.17"
19-
parking_lot = "0.11.0"
16+
futures = "0.3.9"
17+
log = "0.4.13"
18+
structopt = "0.3.21"
19+
parking_lot = "0.11.1"
2020

21-
sc-cli = { version = "0.8.0", features = ["wasmtime"] }
22-
sp-core = "2.0.0"
23-
sc-executor = { version = "0.8.0", features = ["wasmtime"] }
24-
sc-service = { version = "0.8.0", features = ["wasmtime"] }
25-
sp-inherents = "2.0.0"
26-
sc-transaction-pool = "2.0.0"
27-
sp-transaction-pool = "2.0.0"
28-
sc-network = "0.8.0"
29-
sc-consensus-aura = "0.8.0"
30-
sp-consensus-aura = "0.8.0"
31-
sp-consensus = "0.8.0"
32-
sc-consensus = "0.8.0"
33-
sc-finality-grandpa = "0.8.0"
34-
sp-finality-grandpa = "2.0.0"
35-
sc-client-api = "2.0.0"
36-
sp-runtime = "2.0.0"
37-
sc-basic-authorship = "0.8.0"
21+
sc-cli = { version = "0.8.1", features = ["wasmtime"] }
22+
sp-core = "2.0.1"
23+
sc-executor = { version = "0.8.1", features = ["wasmtime"] }
24+
sc-service = { version = "0.8.1", features = ["wasmtime"] }
25+
sp-inherents = "2.0.1"
26+
sc-transaction-pool = "2.0.1"
27+
sp-transaction-pool = "2.0.1"
28+
sc-network = "0.8.1"
29+
sc-consensus-aura = "0.8.1"
30+
sp-consensus-aura = "0.8.1"
31+
sp-consensus = "0.8.1"
32+
sc-consensus = "0.8.1"
33+
sc-finality-grandpa = "0.8.1"
34+
sp-finality-grandpa = "2.0.1"
35+
sc-client-api = "2.0.1"
36+
sp-runtime = "2.0.1"
37+
sc-basic-authorship = "0.8.1"
3838

3939
test-node-runtime = { path = "runtime" }
4040

4141
[build-dependencies]
42-
substrate-build-script-utils = "2.0.0"
42+
substrate-build-script-utils = "2.0.1"

0 commit comments

Comments
 (0)