mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 17:07:56 +00:00
976e96608c
Bumps [clap](https://github.com/clap-rs/clap) from 4.1.4 to 4.1.6. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.1.4...v4.1.6) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
59 lines
3.2 KiB
TOML
59 lines
3.2 KiB
TOML
[package]
|
|
name = "millau-bridge-node"
|
|
description = "Substrate node compatible with Millau 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.1.6", features = ["derive"] }
|
|
jsonrpsee = { version = "0.16.2", features = ["server"] }
|
|
serde_json = "1.0.93"
|
|
|
|
# Bridge dependencies
|
|
|
|
millau-runtime = { path = "../runtime" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-beefy = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
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" }
|
|
mmr-rpc = { 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"}
|
|
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-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-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-timestamp = { 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 = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[features]
|
|
default = []
|
|
runtime-benchmarks = [
|
|
"millau-runtime/runtime-benchmarks",
|
|
]
|