mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 06: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>
34 lines
1.4 KiB
TOML
34 lines
1.4 KiB
TOML
[package]
|
|
name = "xcm-executor-integration-tests"
|
|
description = "Integration tests for the XCM Executor"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version = "1.0.0"
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
|
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
|
|
frame-system = { path = "../../../../substrate/frame/system" }
|
|
futures = "0.3.21"
|
|
pallet-transaction-payment = { path = "../../../../substrate/frame/transaction-payment" }
|
|
pallet-xcm = { path = "../../pallet-xcm" }
|
|
polkadot-test-client = { path = "../../../node/test/client" }
|
|
polkadot-test-runtime = { path = "../../../runtime/test-runtime" }
|
|
polkadot-test-service = { path = "../../../node/test/service" }
|
|
sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
|
|
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
|
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
|
|
sp-state-machine = { path = "../../../../substrate/primitives/state-machine" }
|
|
xcm = { package = "staging-xcm", path = "../..", default-features = false }
|
|
xcm-executor = { package = "staging-xcm-executor", path = ".." }
|
|
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["frame-support/std", "sp-runtime/std", "xcm/std"]
|