[package] name = "rialto-bridge-node" description = "Substrate node compatible with Rialto runtime" version = "0.1.0" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" homepage = "https://substrate.dev" repository = "https://github.com/paritytech/parity-bridges-common/" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" [dependencies] jsonrpc-core = "15.1.0" structopt = "0.3.21" # Bridge dependencies bp-message-lane = { path = "../../../primitives/message-lane" } bp-runtime = { path = "../../../primitives/runtime" } bp-rialto = { path = "../../../primitives/rialto" } pallet-message-lane-rpc = { path = "../../../modules/message-lane/rpc" } rialto-runtime = { path = "../runtime" } # Substrate Dependencies frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", branch = "master" } frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sc-basic-authorship = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sc-cli = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sc-client-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sc-consensus = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sc-consensus-aura = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sc-executor = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sc-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sc-service = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sc-rpc = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sc-transaction-pool = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sp-consensus = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sp-consensus-aura = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sp-inherents = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sp-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" } substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" } [build-dependencies] build-script-utils = { package = "substrate-build-script-utils", version = "2.0" } frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate.git", branch = "master" } vergen = "3.1.0" [features] default = [] runtime-benchmarks = [ "rialto-runtime/runtime-benchmarks", ]