mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 01:11:10 +00:00
Updated to later version of substrate so that it compiles. (#295)
* Updated to later version of substrate so that it compiles. (Referencing substrate this way you only have to search and replace one string to upgrade) * cargo fmt
This commit is contained in:
+11
-6
@@ -1,7 +1,10 @@
|
||||
[package]
|
||||
name = "substrate-subxt-client"
|
||||
version = "0.7.0"
|
||||
authors = ["David Craven <david@craven.ch>", "Parity Technologies <admin@parity.io>"]
|
||||
authors = [
|
||||
"David Craven <david@craven.ch>",
|
||||
"Parity Technologies <admin@parity.io>",
|
||||
]
|
||||
edition = "2018"
|
||||
|
||||
license = "GPL-3.0"
|
||||
@@ -20,13 +23,15 @@ log = "0.4.13"
|
||||
serde_json = "1.0.61"
|
||||
thiserror = "1.0.23"
|
||||
|
||||
sc-client-db = "0.9.0"
|
||||
sp-keyring = "3.0.0"
|
||||
sc-network = { version = "0.9.0", default-features = false }
|
||||
sc-service = { version = "0.9.0", default-features = false }
|
||||
sc-client-db = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
|
||||
sc-network = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10", default-features = false }
|
||||
sc-service = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10", default-features = false }
|
||||
|
||||
[target.'cfg(target_arch="x86_64")'.dependencies]
|
||||
sc-service = { version = "0.9.0", default-features = false, features = ["wasmtime"] }
|
||||
sc-service = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10", default-features = false, features = [
|
||||
"wasmtime",
|
||||
] }
|
||||
|
||||
[dev-dependencies]
|
||||
async-std = { version = "1.8.0", features = ["attributes"] }
|
||||
|
||||
Reference in New Issue
Block a user