mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 10:37:56 +00:00
16 lines
672 B
TOML
16 lines
672 B
TOML
[package]
|
|
name = "test-runtime"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
subxt = { path = ".." }
|
|
sp-runtime = { package = "sp-runtime", git = "https://github.com/paritytech/substrate/", branch = "master" }
|
|
codec = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive", "full", "bit-vec"] }
|
|
|
|
[build-dependencies]
|
|
subxt = { path = ".." }
|
|
sp-core = { package = "sp-core", git = "https://github.com/paritytech/substrate/", branch = "master" }
|
|
jsonrpsee-http-client = { git = "https://github.com/paritytech/jsonrpsee/", branch = "extract-async-client" }
|
|
async-std = { version = "1.9.0", features = ["attributes", "tokio1"] }
|