mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-19 10:01: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" }
|
||||
|
||||
@@ -8,13 +8,13 @@ edition = "2021"
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive" ] }
|
||||
|
||||
# Substrate
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-state-machine = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false}
|
||||
sp-state-machine = { path = "../../../substrate/primitives/state-machine", default-features = false}
|
||||
sp-trie = { path = "../../../substrate/primitives/trie", default-features = false}
|
||||
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
||||
|
||||
# Polkadot
|
||||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
||||
polkadot-primitives = { path = "../../../polkadot/primitives", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
|
||||
|
||||
@@ -8,7 +8,7 @@ build = "build.rs"
|
||||
[dependencies]
|
||||
|
||||
# Polkadot
|
||||
polkadot-node-core-pvf = { git = "https://github.com/paritytech/polkadot", features = ["test-utils"] , branch = "master" }
|
||||
polkadot-node-core-pvf = { path = "../../../polkadot/node/core/pvf", features = ["test-utils"] }
|
||||
|
||||
[build-dependencies]
|
||||
toml = "0.7.6"
|
||||
|
||||
@@ -9,33 +9,33 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }
|
||||
|
||||
# Substrate
|
||||
frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
pallet-glutton = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
frame-executive = { path = "../../../substrate/frame/executive", default-features = false}
|
||||
frame-support = { path = "../../../substrate/frame/support", default-features = false}
|
||||
frame-system = { path = "../../../substrate/frame/system", default-features = false}
|
||||
frame-system-rpc-runtime-api = { path = "../../../substrate/frame/system/rpc/runtime-api", default-features = false}
|
||||
pallet-balances = { path = "../../../substrate/frame/balances", default-features = false}
|
||||
pallet-sudo = { path = "../../../substrate/frame/sudo", default-features = false}
|
||||
pallet-timestamp = { path = "../../../substrate/frame/timestamp", default-features = false}
|
||||
pallet-glutton = { path = "../../../substrate/frame/glutton", default-features = false}
|
||||
pallet-transaction-payment = { path = "../../../substrate/frame/transaction-payment", default-features = false}
|
||||
sp-api = { path = "../../../substrate/primitives/api", default-features = false}
|
||||
sp-block-builder = { path = "../../../substrate/primitives/block-builder", default-features = false}
|
||||
sp-core = { path = "../../../substrate/primitives/core", default-features = false}
|
||||
sp-inherents = { path = "../../../substrate/primitives/inherents", default-features = false}
|
||||
sp-io = { path = "../../../substrate/primitives/io", default-features = false}
|
||||
sp-offchain = { path = "../../../substrate/primitives/offchain", default-features = false}
|
||||
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false}
|
||||
sp-session = { path = "../../../substrate/primitives/session", default-features = false}
|
||||
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
||||
sp-transaction-pool = { path = "../../../substrate/primitives/transaction-pool", default-features = false}
|
||||
sp-version = { path = "../../../substrate/primitives/version", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-pallet-parachain-system = { path = "../../pallets/parachain-system", default-features = false, features = ["parameterized-consensus-hook",] }
|
||||
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
|
||||
|
||||
[build-dependencies]
|
||||
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" , optional = true }
|
||||
substrate-wasm-builder = { path = "../../../substrate/utils/wasm-builder", optional = true }
|
||||
|
||||
[features]
|
||||
default = [
|
||||
|
||||
@@ -22,44 +22,44 @@ url = "2.4.0"
|
||||
tempfile = "3.8.0"
|
||||
|
||||
# Substrate
|
||||
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-chain-spec = { 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-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-service = { 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-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
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-io = { 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-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-tracing = { 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" }
|
||||
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
frame-system = { path = "../../../substrate/frame/system" }
|
||||
frame-system-rpc-runtime-api = { path = "../../../substrate/frame/system/rpc/runtime-api" }
|
||||
pallet-transaction-payment = { path = "../../../substrate/frame/transaction-payment" }
|
||||
sc-basic-authorship = { path = "../../../substrate/client/basic-authorship" }
|
||||
sc-chain-spec = { path = "../../../substrate/client/chain-spec" }
|
||||
sc-client-api = { path = "../../../substrate/client/api" }
|
||||
sc-consensus = { path = "../../../substrate/client/consensus/common" }
|
||||
sc-executor = { path = "../../../substrate/client/executor" }
|
||||
sc-network = { path = "../../../substrate/client/network" }
|
||||
sc-service = { path = "../../../substrate/client/service" }
|
||||
sc-tracing = { path = "../../../substrate/client/tracing" }
|
||||
sc-transaction-pool = { path = "../../../substrate/client/transaction-pool" }
|
||||
sc-transaction-pool-api = { path = "../../../substrate/client/transaction-pool/api" }
|
||||
sc-telemetry = { path = "../../../substrate/client/telemetry" }
|
||||
sp-arithmetic = { path = "../../../substrate/primitives/arithmetic" }
|
||||
sp-blockchain = { path = "../../../substrate/primitives/blockchain" }
|
||||
sp-core = { path = "../../../substrate/primitives/core" }
|
||||
sp-io = { path = "../../../substrate/primitives/io" }
|
||||
sp-api = { path = "../../../substrate/primitives/api" }
|
||||
sp-keyring = { path = "../../../substrate/primitives/keyring" }
|
||||
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false}
|
||||
sp-state-machine = { path = "../../../substrate/primitives/state-machine" }
|
||||
sp-tracing = { path = "../../../substrate/primitives/tracing" }
|
||||
sp-timestamp = { path = "../../../substrate/primitives/timestamp" }
|
||||
sp-consensus = { path = "../../../substrate/primitives/consensus/common" }
|
||||
substrate-test-client = { path = "../../../substrate/test-utils/client" }
|
||||
sc-cli = { path = "../../../substrate/client/cli" }
|
||||
sc-block-builder = { path = "../../../substrate/client/block-builder" }
|
||||
sc-executor-wasmtime = { path = "../../../substrate/client/executor/wasmtime" }
|
||||
sc-executor-common = { path = "../../../substrate/client/executor/common" }
|
||||
|
||||
# Polkadot
|
||||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
||||
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
||||
polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
||||
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
||||
polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
||||
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
||||
polkadot-primitives = { path = "../../../polkadot/primitives" }
|
||||
polkadot-service = { path = "../../../polkadot/node/service" }
|
||||
polkadot-test-service = { path = "../../../polkadot/node/test/service" }
|
||||
polkadot-cli = { path = "../../../polkadot/cli" }
|
||||
polkadot-node-subsystem = { path = "../../../polkadot/node/subsystem" }
|
||||
polkadot-overseer = { path = "../../../polkadot/node/overseer" }
|
||||
|
||||
# Cumulus
|
||||
cumulus-client-cli = { path = "../../client/cli" }
|
||||
@@ -77,23 +77,23 @@ cumulus-relay-chain-minimal-node = { path = "../../client/relay-chain-minimal-no
|
||||
cumulus-client-pov-recovery = { path = "../../client/pov-recovery" }
|
||||
cumulus-test-relay-sproof-builder = { path = "../relay-sproof-builder" }
|
||||
cumulus-pallet-parachain-system = { path = "../../pallets/parachain-system", default-features = false, features = ["parameterized-consensus-hook",] }
|
||||
pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-timestamp = { path = "../../../substrate/frame/timestamp" }
|
||||
|
||||
[dev-dependencies]
|
||||
futures = "0.3.28"
|
||||
portpicker = "0.1.1"
|
||||
rococo-parachain-runtime = { path = "../../parachains/runtimes/testing/rococo-parachain" }
|
||||
pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-consensus-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-im-online = { path = "../../../substrate/frame/im-online" }
|
||||
sp-consensus-grandpa = { path = "../../../substrate/primitives/consensus/grandpa" }
|
||||
sp-authority-discovery = { path = "../../../substrate/primitives/authority-discovery" }
|
||||
cumulus-test-client = { path = "../client" }
|
||||
|
||||
# Polkadot dependencies
|
||||
polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
||||
polkadot-test-service = { path = "../../../polkadot/node/test/service" }
|
||||
|
||||
# Substrate dependencies
|
||||
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-cli = { path = "../../../substrate/client/cli" }
|
||||
substrate-test-utils = { path = "../../../substrate/test-utils" }
|
||||
|
||||
[features]
|
||||
runtime-benchmarks = ["polkadot-test-service/runtime-benchmarks"]
|
||||
|
||||
Reference in New Issue
Block a user