[[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 "] 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", "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", ]