mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 16:47:57 +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>
45 lines
1.8 KiB
TOML
45 lines
1.8 KiB
TOML
[package]
|
|
name = "xcm-emulator"
|
|
description = "Test kit to emulate XCM program execution."
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
|
paste = "1.0.14"
|
|
log = { version = "0.4.20", default-features = false }
|
|
lazy_static = "1.4.0"
|
|
impl-trait-for-tuples = "0.2.2"
|
|
|
|
# Substrate
|
|
frame-support = { path = "../../../substrate/frame/support" }
|
|
frame-system = { path = "../../../substrate/frame/system" }
|
|
sp-io = { path = "../../../substrate/primitives/io" }
|
|
sp-core = { path = "../../../substrate/primitives/core" }
|
|
sp-std = { path = "../../../substrate/primitives/std" }
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime" }
|
|
sp-arithmetic = { path = "../../../substrate/primitives/arithmetic" }
|
|
sp-tracing = { path = "../../../substrate/primitives/tracing" }
|
|
pallet-balances = { path = "../../../substrate/frame/balances" }
|
|
pallet-message-queue = { path = "../../../substrate/frame/message-queue" }
|
|
|
|
# Cumulus
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
cumulus-pallet-xcmp-queue = { path = "../../pallets/xcmp-queue" }
|
|
cumulus-pallet-parachain-system = { path = "../../pallets/parachain-system" }
|
|
cumulus-primitives-parachain-inherent = { path = "../../primitives/parachain-inherent" }
|
|
cumulus-test-relay-sproof-builder = { path = "../../test/relay-sproof-builder" }
|
|
parachains-common = { path = "../../parachains/common" }
|
|
|
|
# Polkadot
|
|
xcm = { package = "staging-xcm", path = "../../../polkadot/xcm" }
|
|
xcm-executor = { package = "staging-xcm-executor", path = "../../../polkadot/xcm/xcm-executor" }
|
|
polkadot-primitives = { path = "../../../polkadot/primitives" }
|
|
polkadot-parachain-primitives = { path = "../../../polkadot/parachain" }
|
|
polkadot-runtime-parachains = { path = "../../../polkadot/runtime/parachains" }
|