Update substrate crates (#709)

* Patch all substrate deps to use my substrate branch

* default-features = false causing issus in test-runtime

* Use substrate polkadot release branch

* Use default-features for sp-runtime again :(

* Restore default-features for subxt-cli/sp-core

* Fix module error integration test

* Add Send + Sync bounds to ExtrinsicEvents::iter()

* Elide lifetime

* Revert adding Send + Sync

* Add Sync bound to Rpc::ClientError

* Remove version in subxt-metadata

* Use released crates

* Use released sp-keyring

* Fix sp-keyring deps

* Remove unnecessary sp-keyring default-features = false
This commit is contained in:
Andrew Jones
2022-11-16 12:21:17 +00:00
committed by GitHub
parent 92ace0629a
commit 389f20ff94
7 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -5,12 +5,12 @@ edition = "2021"
[dependencies]
subxt = { path = "../../subxt" }
sp-runtime = "6.0.0"
sp-runtime = "7.0.0"
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full", "bit-vec"] }
[build-dependencies]
subxt = { path = "../../subxt" }
sp-core = "6.0.0"
sp-core = { version = "7.0.0", default-features = false }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
which = "4.2.2"
jsonrpsee = { version = "0.16.0", features = ["async-client", "client-ws-transport"] }