mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-17 11:21:07 +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:
+17
-14
@@ -25,7 +25,10 @@ tokio1 = ["jsonrpsee-http-client/tokio1", "jsonrpsee-ws-client/tokio1"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.49"
|
||||
codec = { package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive", "full"] }
|
||||
codec = { package = "parity-scale-codec", version = "2.1", default-features = false, features = [
|
||||
"derive",
|
||||
"full",
|
||||
] }
|
||||
dyn-clone = "1.0.4"
|
||||
futures = "0.3.13"
|
||||
hex = "0.4.3"
|
||||
@@ -43,17 +46,17 @@ url = "2.2.1"
|
||||
substrate-subxt-client = { version = "0.7.0", path = "client", optional = true }
|
||||
substrate-subxt-proc-macro = { version = "0.15.0", path = "proc-macro" }
|
||||
|
||||
sp-application-crypto = "3.0.0"
|
||||
sp-core = "3.0.0"
|
||||
sp-rpc = "3.0.0"
|
||||
sp-runtime = "3.0.0"
|
||||
sp-std = "3.0.0"
|
||||
sp-version = "3.0.0"
|
||||
sp-application-crypto = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
|
||||
sp-rpc = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
|
||||
sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
|
||||
sp-version = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
|
||||
|
||||
frame-metadata = "13.0.0"
|
||||
frame-support = "3.0.0"
|
||||
pallet-indices = "3.0.0"
|
||||
pallet-staking = "3.0.0"
|
||||
frame-metadata = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
|
||||
frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
|
||||
pallet-indices = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
|
||||
pallet-staking = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
|
||||
|
||||
[dev-dependencies]
|
||||
assert_matches = "1.5.0"
|
||||
@@ -62,6 +65,6 @@ env_logger = "0.8.3"
|
||||
tempdir = "0.3.7"
|
||||
wabt = "0.10.0"
|
||||
which = "4.0.2"
|
||||
sp-keyring = "3.0.0"
|
||||
frame-system = "3.0.0"
|
||||
pallet-balances = "3.0.0"
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
|
||||
frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
|
||||
pallet-balances = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.10" }
|
||||
|
||||
Reference in New Issue
Block a user