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>
82 lines
2.8 KiB
TOML
82 lines
2.8 KiB
TOML
[package]
|
|
authors.workspace = true
|
|
description = "Simple pallet to select collators for a parachain."
|
|
edition.workspace = true
|
|
homepage = "https://substrate.io"
|
|
license = "Apache-2.0"
|
|
name = "pallet-collator-selection"
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
version = "3.0.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
log = { version = "0.4.20", default-features = false }
|
|
codec = { default-features = false, features = ["derive"], package = "parity-scale-codec", version = "3.0.0" }
|
|
rand = { version = "0.8.5", features = ["std_rng"], default-features = false }
|
|
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
|
|
|
sp-std = { path = "../../../substrate/primitives/std", default-features = false }
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false }
|
|
sp-staking = { path = "../../../substrate/primitives/staking", default-features = false }
|
|
frame-support = { path = "../../../substrate/frame/support", default-features = false }
|
|
frame-system = { path = "../../../substrate/frame/system", default-features = false }
|
|
pallet-authorship = { path = "../../../substrate/frame/authorship", default-features = false }
|
|
pallet-session = { path = "../../../substrate/frame/session", default-features = false }
|
|
|
|
frame-benchmarking = { path = "../../../substrate/frame/benchmarking", default-features = false, optional = true }
|
|
|
|
[dev-dependencies]
|
|
sp-core = { path = "../../../substrate/primitives/core" }
|
|
sp-io = { path = "../../../substrate/primitives/io" }
|
|
sp-tracing = { path = "../../../substrate/primitives/tracing" }
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime" }
|
|
pallet-timestamp = { path = "../../../substrate/frame/timestamp" }
|
|
sp-consensus-aura = { path = "../../../substrate/primitives/consensus/aura" }
|
|
pallet-balances = { path = "../../../substrate/frame/balances" }
|
|
pallet-aura = { path = "../../../substrate/frame/aura" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-timestamp/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"sp-staking/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"codec/std",
|
|
"frame-benchmarking/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"pallet-authorship/std",
|
|
"pallet-session/std",
|
|
"rand/std",
|
|
"scale-info/std",
|
|
"sp-runtime/std",
|
|
"sp-staking/std",
|
|
"sp-std/std",
|
|
]
|
|
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"pallet-aura/try-runtime",
|
|
"pallet-authorship/try-runtime",
|
|
"pallet-balances/try-runtime",
|
|
"pallet-session/try-runtime",
|
|
"pallet-timestamp/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|
|
|
|
experimental = ["pallet-aura/experimental"]
|