mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 02:37:58 +00:00
6ce9983506
* examples: Use tokio instead of std async Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * test-runtime: Use tokio instead of std async Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * subxt: Use tokio instead of std async Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * examples: Use only necessary tokio features Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
16 lines
408 B
TOML
16 lines
408 B
TOML
[package]
|
|
name = "test-runtime"
|
|
version = "0.19.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
subxt = { path = "../subxt" }
|
|
sp-runtime = "6.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"
|
|
tokio = { version = "1.8", features = ["rt", "macros"] }
|
|
which = "4.2.2"
|