mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 11:07:56 +00:00
be8e626806
We currently use a bit of a hack in `.cargo/config` to make sure that clippy isn't too annoying by specifying the list of lints. There is now a stable way to define lints for a workspace. The only down side is that every crate seems to have to opt into this so there's a *few* files modified in this PR. Dependencies: - [x] PR that upgrades CI to use rust 1.74 is merged. --------- Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> Co-authored-by: Branislav Kontur <bkontur@gmail.com> Co-authored-by: Liam Aharon <liam.aharon@hotmail.com>
49 lines
1.8 KiB
TOML
49 lines
1.8 KiB
TOML
[package]
|
|
authors.workspace = true
|
|
name = "cumulus-relay-chain-rpc-interface"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
description = "Implementation of the RelayChainInterface trait that connects to a remote RPC-node."
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
polkadot-overseer = { path = "../../../polkadot/node/overseer" }
|
|
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
cumulus-relay-chain-interface = { path = "../relay-chain-interface" }
|
|
|
|
sp-api = { path = "../../../substrate/primitives/api" }
|
|
sp-core = { path = "../../../substrate/primitives/core" }
|
|
sp-consensus-babe = { path = "../../../substrate/primitives/consensus/babe" }
|
|
sp-authority-discovery = { path = "../../../substrate/primitives/authority-discovery" }
|
|
sp-state-machine = { path = "../../../substrate/primitives/state-machine" }
|
|
sp-storage = { path = "../../../substrate/primitives/storage" }
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime" }
|
|
sp-version = { path = "../../../substrate/primitives/version" }
|
|
sc-client-api = { path = "../../../substrate/client/api" }
|
|
sc-rpc-api = { path = "../../../substrate/client/rpc-api" }
|
|
sc-service = { path = "../../../substrate/client/service" }
|
|
|
|
tokio = { version = "1.32.0", features = ["sync"] }
|
|
tokio-util = { version = "0.7.8", features = ["compat"] }
|
|
|
|
futures = "0.3.28"
|
|
futures-timer = "3.0.2"
|
|
parity-scale-codec = "3.6.4"
|
|
jsonrpsee = { version = "0.16.2", features = ["ws-client"] }
|
|
tracing = "0.1.37"
|
|
async-trait = "0.1.73"
|
|
url = "2.4.0"
|
|
serde_json = "1.0.108"
|
|
serde = "1.0.193"
|
|
schnellru = "0.2.1"
|
|
smoldot = { version = "0.11.0", default_features = false, features = ["std"] }
|
|
smoldot-light = { version = "0.9.0", default_features = false, features = ["std"] }
|
|
either = "1.8.1"
|
|
thiserror = "1.0.48"
|
|
rand = "0.8.5"
|
|
pin-project = "1.1.3"
|