mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 16:51: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>
37 lines
1.2 KiB
TOML
37 lines
1.2 KiB
TOML
[package]
|
|
name = "test-parachain-undying"
|
|
description = "Test parachain for zombienet integration tests"
|
|
build = "build.rs"
|
|
publish = false
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
parachain = { package = "polkadot-parachain-primitives", path = "../..", default-features = false, features = ["wasm-api"] }
|
|
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
|
sp-std = { path = "../../../../substrate/primitives/std", default-features = false }
|
|
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
|
|
dlmalloc = { version = "0.2.4", features = ["global"] }
|
|
log = { version = "0.4.17", default-features = false }
|
|
|
|
# We need to make sure the global allocator is disabled until we have support of full substrate externalities
|
|
sp-io = { path = "../../../../substrate/primitives/io", default-features = false, features = ["disable_allocator"] }
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { path = "../../../../substrate/utils/wasm-builder" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"log/std",
|
|
"parachain/std",
|
|
"parity-scale-codec/std",
|
|
"sp-io/std",
|
|
"sp-std/std",
|
|
]
|