Files
pezkuwi-subxt/test-runtime/Cargo.toml
T
Alexandru Vasile 6ce9983506 Use tokio instead of async-std (#495)
* 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>
2022-04-01 17:57:15 +03:00

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"