mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 12:17:58 +00:00
acb872fbb0
* Remove chains. * Move relay clients. * Flatten generic. * Fix fmt.
62 lines
3.2 KiB
TOML
62 lines
3.2 KiB
TOML
[package]
|
|
name = "rialto-bridge-node"
|
|
description = "Substrate node compatible with Rialto runtime"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
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-messages = { path = "../../../primitives/messages" }
|
|
bp-runtime = { path = "../../../primitives/runtime" }
|
|
bp-rialto = { path = "../../../primitives/chain-rialto" }
|
|
pallet-bridge-messages = { path = "../../../modules/messages" }
|
|
pallet-bridge-messages-rpc = { path = "../../../modules/messages/rpc" }
|
|
rialto-runtime = { path = "../runtime" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
|
|
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
node-inspect = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-rpc = { 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-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[build-dependencies]
|
|
substrate-build-script-utils = "3.0.0"
|
|
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[features]
|
|
default = []
|
|
runtime-benchmarks = [
|
|
"rialto-runtime/runtime-benchmarks",
|
|
]
|