mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 18:41:03 +00:00
3b839476d9
* Bump clap from 3.0.7 to 3.1.1 Bumps [clap](https://github.com/clap-rs/clap) from 3.0.7 to 3.1.1. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v3.0.7...v3.1.1) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Fix up deprecated usages * cargo fmt Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Keith Yeung <kungfukeith11@gmail.com>
113 lines
5.6 KiB
TOML
113 lines
5.6 KiB
TOML
[package]
|
|
name = "polkadot-collator"
|
|
version = "5.2.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "polkadot-collator"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "3.1", features = ["derive"] }
|
|
futures = { version = "0.3.1", features = ["compat"] }
|
|
log = "0.4.8"
|
|
codec = { package = "parity-scale-codec", version = "2.3.0" }
|
|
serde = { version = "1.0.132", features = ["derive"] }
|
|
hex-literal = "0.3.4"
|
|
async-trait = "0.1.42"
|
|
|
|
# Parachain runtimes
|
|
rococo-parachain-runtime = { path = "rococo-parachain" }
|
|
shell-runtime = { path = "shell" }
|
|
seedling-runtime = { path = "seedling" }
|
|
statemint-runtime = { path = "statemint" }
|
|
statemine-runtime = { path = "statemine" }
|
|
westmint-runtime = { path = "westmint" }
|
|
canvas-kusama-runtime = { path = "canvas-kusama" }
|
|
parachains-common = { path = "parachains-common" }
|
|
|
|
# Substrate dependencies
|
|
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-consensus = { 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-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# try-runtime stuff.
|
|
try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# RPC related dependencies
|
|
jsonrpc-core = "18.0.0"
|
|
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-contracts-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Cumulus dependencies
|
|
cumulus-client-cli = { path = "../client/cli" }
|
|
cumulus-client-consensus-aura = { path = "../client/consensus/aura" }
|
|
cumulus-client-consensus-relay-chain = { path = "../client/consensus/relay-chain" }
|
|
cumulus-client-consensus-common = { path = "../client/consensus/common" }
|
|
cumulus-client-service = { path = "../client/service" }
|
|
cumulus-client-network = { path = "../client/network" }
|
|
cumulus-primitives-core = { path = "../primitives/core" }
|
|
cumulus-primitives-parachain-inherent = { path = "../primitives/parachain-inherent" }
|
|
cumulus-relay-chain-interface = { path = "../client/relay-chain-interface" }
|
|
cumulus-relay-chain-local = { path = "../client/relay-chain-local" }
|
|
|
|
# Polkadot dependencies
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
xcm = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
[build-dependencies]
|
|
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0"
|
|
nix = "0.23"
|
|
tempfile = "3.2.0"
|
|
|
|
[features]
|
|
default = []
|
|
runtime-benchmarks = [
|
|
"polkadot-service/runtime-benchmarks",
|
|
"statemint-runtime/runtime-benchmarks",
|
|
"statemine-runtime/runtime-benchmarks",
|
|
"westmint-runtime/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
'statemint-runtime/try-runtime',
|
|
'statemine-runtime/try-runtime',
|
|
'westmint-runtime/try-runtime',
|
|
'shell-runtime/try-runtime',
|
|
]
|