mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-08 20:38:04 +00:00
f539157da2
* Backport from `polkadot-sdk` * lingua stuff * Fixes * Fix * Features? * Fix - v5 -> v6 * zepter format features * try zepter with CI * Fix imports * Fix * Fix * Fix * Revert zepther pipeline
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.4.6", features = ["derive"] }
|
|
serde_json = "1.0.107"
|
|
|
|
# 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" ] }
|
|
|
|
[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",
|
|
]
|