mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 08:41:02 +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>
34 lines
1.6 KiB
TOML
34 lines
1.6 KiB
TOML
[package]
|
|
name = "westend-emulated-chain"
|
|
version = "0.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
description = "Westend emulated chain"
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
serde_json = "1.0.104"
|
|
|
|
# Substrate
|
|
sp-core = { path = "../../../../../../../substrate/primitives/core", default-features = false }
|
|
sp-runtime = { path = "../../../../../../../substrate/primitives/runtime", default-features = false }
|
|
sp-authority-discovery = { path = "../../../../../../../substrate/primitives/authority-discovery", default-features = false }
|
|
sp-consensus-babe = { path = "../../../../../../../substrate/primitives/consensus/babe", default-features = false }
|
|
beefy-primitives = { package = "sp-consensus-beefy", path = "../../../../../../../substrate/primitives/consensus/beefy" }
|
|
grandpa = { package = "sc-consensus-grandpa", path = "../../../../../../../substrate/client/consensus/grandpa", default-features = false }
|
|
pallet-im-online = { path = "../../../../../../../substrate/frame/im-online", default-features = false }
|
|
pallet-staking = { path = "../../../../../../../substrate/frame/staking", default-features = false }
|
|
|
|
# Polkadot
|
|
polkadot-primitives = { path = "../../../../../../../polkadot/primitives", default-features = false }
|
|
westend-runtime-constants = { path = "../../../../../../../polkadot/runtime/westend/constants", default-features = false }
|
|
westend-runtime = { path = "../../../../../../../polkadot/runtime/westend" }
|
|
|
|
# Cumulus
|
|
parachains-common = { path = "../../../../../../parachains/common" }
|
|
emulated-integration-tests-common = { path = "../../../common", default-features = false }
|