mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 18:37:59 +00:00
389f20ff94
* 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
17 lines
555 B
TOML
17 lines
555 B
TOML
[package]
|
|
name = "test-runtime"
|
|
version = "0.24.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
subxt = { path = "../../subxt" }
|
|
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 = { 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"] }
|