mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-18 18:51:02 +00:00
@@ -8,27 +8,27 @@ edition = "2021"
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive" ] }
|
||||
|
||||
# Substrate
|
||||
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-service = { path = "../../../substrate/client/service" }
|
||||
sc-consensus = { path = "../../../substrate/client/consensus/common" }
|
||||
sc-block-builder = { path = "../../../substrate/client/block-builder" }
|
||||
sc-executor = { path = "../../../substrate/client/executor" }
|
||||
sc-executor-common = { path = "../../../substrate/client/executor/common" }
|
||||
substrate-test-client = { path = "../../../substrate/test-utils/client" }
|
||||
sp-runtime = { path = "../../../substrate/primitives/runtime" }
|
||||
sp-core = { path = "../../../substrate/primitives/core" }
|
||||
sp-api = { path = "../../../substrate/primitives/api" }
|
||||
sp-keyring = { path = "../../../substrate/primitives/keyring" }
|
||||
sp-blockchain = { path = "../../../substrate/primitives/blockchain" }
|
||||
sp-inherents = { path = "../../../substrate/primitives/inherents" }
|
||||
sp-io = { path = "../../../substrate/primitives/io" }
|
||||
sp-timestamp = { path = "../../../substrate/primitives/timestamp" }
|
||||
frame-system = { path = "../../../substrate/frame/system" }
|
||||
pallet-transaction-payment = { path = "../../../substrate/frame/transaction-payment" }
|
||||
pallet-balances = { path = "../../../substrate/frame/balances" }
|
||||
|
||||
# Polkadot
|
||||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
||||
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
||||
polkadot-primitives = { path = "../../../polkadot/primitives" }
|
||||
polkadot-parachain = { path = "../../../polkadot/parachain" }
|
||||
|
||||
# Cumulus
|
||||
cumulus-test-runtime = { path = "../runtime" }
|
||||
|
||||
Reference in New Issue
Block a user