mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-19 03:01:02 +00:00
@@ -28,38 +28,38 @@ test-runtime-constants = { path = "../../../runtime/test-runtime/constants" }
|
||||
polkadot-runtime-parachains = { path = "../../../runtime/parachains" }
|
||||
|
||||
# Substrate dependencies
|
||||
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
grandpa = { package = "sc-consensus-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
grandpa_primitives = { package = "sp-consensus-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-authority-discovery = { path = "../../../../substrate/primitives/authority-discovery" }
|
||||
sc-authority-discovery = { path = "../../../../substrate/client/authority-discovery" }
|
||||
babe = { package = "sc-consensus-babe", path = "../../../../substrate/client/consensus/babe" }
|
||||
babe-primitives = { package = "sp-consensus-babe", path = "../../../../substrate/primitives/consensus/babe" }
|
||||
consensus_common = { package = "sp-consensus", path = "../../../../substrate/primitives/consensus/common" }
|
||||
frame-system = { path = "../../../../substrate/frame/system" }
|
||||
grandpa = { package = "sc-consensus-grandpa", path = "../../../../substrate/client/consensus/grandpa" }
|
||||
grandpa_primitives = { package = "sp-consensus-grandpa", path = "../../../../substrate/primitives/consensus/grandpa" }
|
||||
inherents = { package = "sp-inherents", path = "../../../../substrate/primitives/inherents" }
|
||||
pallet-staking = { path = "../../../../substrate/frame/staking" }
|
||||
pallet-balances = { path = "../../../../substrate/frame/balances" }
|
||||
pallet-transaction-payment = { path = "../../../../substrate/frame/transaction-payment" }
|
||||
sc-chain-spec = { path = "../../../../substrate/client/chain-spec" }
|
||||
sc-cli = { path = "../../../../substrate/client/cli" }
|
||||
sc-client-api = { path = "../../../../substrate/client/api" }
|
||||
sc-consensus = { path = "../../../../substrate/client/consensus/common" }
|
||||
sc-network = { path = "../../../../substrate/client/network" }
|
||||
sc-tracing = { path = "../../../../substrate/client/tracing" }
|
||||
sc-transaction-pool = { path = "../../../../substrate/client/transaction-pool" }
|
||||
sc-service = { path = "../../../../substrate/client/service", default-features = false }
|
||||
sp-arithmetic = { path = "../../../../substrate/primitives/arithmetic" }
|
||||
sp-blockchain = { path = "../../../../substrate/primitives/blockchain" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
|
||||
sp-state-machine = { path = "../../../../substrate/primitives/state-machine" }
|
||||
substrate-test-client = { path = "../../../../substrate/test-utils/client" }
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||
pallet-balances = { path = "../../../../substrate/frame/balances", default-features = false }
|
||||
serde_json = "1.0.96"
|
||||
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
substrate-test-utils = { path = "../../../../substrate/test-utils" }
|
||||
tokio = { version = "1.24.2", features = ["macros"] }
|
||||
|
||||
[features]
|
||||
|
||||
Reference in New Issue
Block a user