mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 18:01:03 +00:00
2c26640ac3
* Use polkadot-sdk dependencies * Fix ring-proof ref * Fix Beefy * Fix imports * Simple runtimes fixes * Fix substrate-relay * Add ParaAssignmentProvider for Rialto * Rialto chain_spec fix * Fix Rialto build * Fix Rialto pvf workers * Allow rialto-parachain deprecated features warnings
62 lines
3.0 KiB
TOML
62 lines
3.0 KiB
TOML
[[bin]]
|
|
name = "rialto-bridge-node-execute-worker"
|
|
path = "src/workers/execute-worker.rs"
|
|
|
|
[[bin]]
|
|
name = "rialto-bridge-node-prepare-worker"
|
|
path = "src/workers/prepare-worker.rs"
|
|
|
|
[package]
|
|
name = "rialto-bridge-node"
|
|
description = "Substrate node compatible with Rialto runtime"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
repository = "https://github.com/paritytech/parity-bridges-common/"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.3.23", features = ["derive"] }
|
|
serde_json = "1.0.105"
|
|
|
|
# Bridge dependencies
|
|
|
|
rialto-runtime = { path = "../runtime" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
sp-consensus-beefy = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
frame-benchmarking-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
node-inspect = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
sc-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master"}
|
|
sc-executor = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
sc-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
sp-authority-discovery = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
sp-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
|
|
# Polkadot Dependencies
|
|
polkadot-node-core-pvf = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
polkadot-node-core-pvf-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
polkadot-node-core-pvf-execute-worker = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
polkadot-node-core-pvf-prepare-worker = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
polkadot-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false, features = [ "full-node", "polkadot-native" ] }
|
|
|
|
[build-dependencies]
|
|
substrate-build-script-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
frame-benchmarking-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
|
|
[features]
|
|
default = []
|
|
runtime-benchmarks = [
|
|
"polkadot-service/runtime-benchmarks",
|
|
"rialto-runtime/runtime-benchmarks",
|
|
]
|