mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-24 01:57:59 +00:00
2c8e5211aa
* Update substrate deps to 3.0.0 and 0.9.0 * Update substrate wasm tools * Fixing errors for 3.0.0 compat * Fixing more errors for 3.0.0 compat * Use MultiAddress for test runtime * Fmt * Fix node test * Pin Funty * Update AccountInfo struct * Add comment about funty pin
33 lines
1.0 KiB
TOML
33 lines
1.0 KiB
TOML
[package]
|
|
name = "substrate-subxt-client"
|
|
version = "0.6.0"
|
|
authors = ["David Craven <david@craven.ch>", "Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
license = "GPL-3.0"
|
|
repository = "https://github.com/paritytech/substrate-subxt"
|
|
documentation = "https://docs.rs/substrate-subxt-client"
|
|
homepage = "https://www.parity.io/"
|
|
description = "Embed a substrate node into your subxt application."
|
|
keywords = ["parity", "substrate", "blockchain"]
|
|
|
|
[dependencies]
|
|
async-std = "1.8.0"
|
|
futures = { version = "0.3.9", features = ["compat"], package = "futures" }
|
|
futures01 = { package = "futures", version = "0.1.29" }
|
|
jsonrpsee = "0.1.0"
|
|
log = "0.4.13"
|
|
sc-network = { version = "0.9.0", default-features = false }
|
|
sc-client-db = "0.9.0"
|
|
sc-service = { version = "0.9.0", default-features = false }
|
|
serde_json = "1.0.61"
|
|
sp-keyring = "3.0.0"
|
|
thiserror = "1.0.23"
|
|
|
|
[dev-dependencies]
|
|
async-std = { version = "1.8.0", features = ["attributes"] }
|
|
env_logger = "0.8.2"
|
|
substrate-subxt = { path = ".." }
|
|
tempdir = "0.3.7"
|
|
test-node = { path = "../test-node" }
|