mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 00:31:07 +00:00
@@ -16,25 +16,25 @@ polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
|
||||
# Substrate dependencies
|
||||
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-inherents = { 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-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
substrate-test-client = { path = "../../../../substrate/test-utils/client" }
|
||||
sc-service = { path = "../../../../substrate/client/service" }
|
||||
sc-block-builder = { path = "../../../../substrate/client/block-builder" }
|
||||
sc-consensus = { path = "../../../../substrate/client/consensus/common" }
|
||||
sc-offchain = { path = "../../../../substrate/client/offchain" }
|
||||
sp-blockchain = { path = "../../../../substrate/primitives/blockchain" }
|
||||
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
|
||||
sp-inherents = { path = "../../../../substrate/primitives/inherents" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-api = { path = "../../../../substrate/primitives/api" }
|
||||
sp-timestamp = { path = "../../../../substrate/primitives/timestamp" }
|
||||
sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
|
||||
sp-consensus-babe = { path = "../../../../substrate/primitives/consensus/babe" }
|
||||
sp-state-machine = { path = "../../../../substrate/primitives/state-machine" }
|
||||
sp-io = { path = "../../../../substrate/primitives/io" }
|
||||
frame-benchmarking = { path = "../../../../substrate/frame/benchmarking" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
futures = "0.3.21"
|
||||
|
||||
[features]
|
||||
|
||||
@@ -17,8 +17,8 @@ polkadot-erasure-coding = { path = "../../../erasure-coding" }
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
|
||||
sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-executor-common = { path = "../../../../substrate/client/executor/common" }
|
||||
sp-maybe-compressed-blob = { path = "../../../../substrate/primitives/maybe-compressed-blob" }
|
||||
|
||||
kusama-runtime = { path = "../../../runtime/kusama" }
|
||||
|
||||
|
||||
@@ -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