mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 05:57:59 +00:00
6900160c31
Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.25 to 0.3.26. - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.25...0.3.26) --- updated-dependencies: - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
56 lines
2.5 KiB
TOML
56 lines
2.5 KiB
TOML
[package]
|
|
name = "relay-substrate-client"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
async-std = { version = "1.6.5", features = ["attributes"] }
|
|
async-trait = "0.1"
|
|
codec = { package = "parity-scale-codec", version = "3.1.5" }
|
|
futures = "0.3.26"
|
|
jsonrpsee = { version = "0.15", features = ["macros", "ws-client"] }
|
|
log = "0.4.17"
|
|
num-traits = "0.2"
|
|
rand = "0.7"
|
|
scale-info = { version = "2.1.1", features = ["derive"] }
|
|
tokio = { version = "1.25", features = ["rt-multi-thread"] }
|
|
thiserror = "1.0.26"
|
|
|
|
# Bridge dependencies
|
|
|
|
bp-header-chain = { path = "../../primitives/header-chain" }
|
|
bp-messages = { path = "../../primitives/messages" }
|
|
bp-polkadot-core = { path = "../../primitives/polkadot-core" }
|
|
bp-runtime = { path = "../../primitives/runtime" }
|
|
pallet-bridge-messages = { path = "../../modules/messages" }
|
|
finality-relay = { path = "../finality" }
|
|
relay-utils = { path = "../utils" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Polkadot Dependencies
|
|
|
|
xcm = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false }
|
|
|
|
[features]
|
|
default = []
|
|
test-helpers = []
|