Skip to content

Commit

Permalink
Update substrate dependencies (#429)
Browse files Browse the repository at this point in the history
* Update substrate dependencies

* Update sp-keyring deps
  • Loading branch information
ascjones authored Feb 3, 2022
1 parent 9f88761 commit 7f3f686
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ description = "Subxt example usage"
[dev-dependencies]
subxt = { path = "../subxt" }
async-std = { version = "1.9.0", features = ["attributes", "tokio1"] }
sp-keyring = "4.0.0"
sp-keyring = "5.0.0"
env_logger = "0.9.0"
futures = "0.3.13"
codec = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive", "full", "bit-vec"] }
Expand Down
2 changes: 1 addition & 1 deletion macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ subxt-codegen = { path = "../codegen", version = "0.16.0" }
pretty_assertions = "1.0.0"
subxt = { path = "../subxt", version = "0.16.0" }
trybuild = "1.0.38"
sp-keyring = "4.0.0"
sp-keyring = "5.0.0"
6 changes: 3 additions & 3 deletions subxt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ url = "2.2.1"

subxt-macro = { version = "0.16.0", path = "../macro" }

sp-core = { version = "4.0.0", default-features = false }
sp-runtime = { version = "4.0.0", default-features = false }
sp-core = { version = "5.0.0", default-features = false }
sp-runtime = { version = "5.0.0", default-features = false }
sp-version = "4.0.0"

frame-metadata = "14.0.0"
Expand All @@ -46,4 +46,4 @@ tempdir = "0.3.7"
wabt = "0.10.0"
which = "4.0.2"
test-runtime = { path = "../test-runtime" }
sp-keyring = "4.0.0"
sp-keyring = "5.0.0"
4 changes: 2 additions & 2 deletions test-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ edition = "2021"

[dependencies]
subxt = { path = "../subxt" }
sp-runtime = "4.0.0"
sp-runtime = "5.0.0"
codec = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive", "full", "bit-vec"] }

[build-dependencies]
subxt = { path = "../subxt", version = "0.16.0" }
sp-core = "4.0.0"
sp-core = "5.0.0"
async-std = { version = "1.9.0", features = ["attributes", "tokio1"] }
which = "4.2.2"

0 comments on commit 7f3f686

Please sign in to comment.