mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +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>
36 lines
1.6 KiB
TOML
36 lines
1.6 KiB
TOML
[package]
|
|
name = "polkadot-node-core-backing"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "The Candidate Backing Subsystem. Tracks parachain candidates that can be backed, as well as the issuance of statements about candidates."
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
futures = "0.3.21"
|
|
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
polkadot-node-primitives = { path = "../../primitives" }
|
|
polkadot-node-subsystem = { path = "../../subsystem" }
|
|
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
|
erasure-coding = { package = "polkadot-erasure-coding", path = "../../../erasure-coding" }
|
|
statement-table = { package = "polkadot-statement-table", path = "../../../statement-table" }
|
|
bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] }
|
|
gum = { package = "tracing-gum", path = "../../gum" }
|
|
thiserror = "1.0.48"
|
|
fatality = "0.0.6"
|
|
|
|
[dev-dependencies]
|
|
sp-core = { path = "../../../../substrate/primitives/core" }
|
|
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto" }
|
|
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
|
sc-keystore = { path = "../../../../substrate/client/keystore" }
|
|
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
|
futures = { version = "0.3.21", features = ["thread-pool"] }
|
|
assert_matches = "1.4.0"
|
|
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
|
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" }
|