mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 04:37: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>
62 lines
2.7 KiB
TOML
62 lines
2.7 KiB
TOML
[package]
|
|
name = "polkadot-primitives"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Shared primitives used by Polkadot runtime"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
bitvec = { version = "1.0.0", default-features = false, features = ["alloc", "serde"] }
|
|
hex-literal = "0.4.1"
|
|
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["bit-vec", "derive"] }
|
|
scale-info = { version = "2.10.0", default-features = false, features = ["bit-vec", "derive", "serde"] }
|
|
serde = { version = "1.0.193", default-features = false, features = ["alloc", "derive"] }
|
|
|
|
application-crypto = { package = "sp-application-crypto", path = "../../substrate/primitives/application-crypto", default-features = false, features = ["serde"] }
|
|
inherents = { package = "sp-inherents", path = "../../substrate/primitives/inherents", default-features = false }
|
|
primitives = { package = "sp-core", path = "../../substrate/primitives/core", default-features = false }
|
|
runtime_primitives = { package = "sp-runtime", path = "../../substrate/primitives/runtime", default-features = false }
|
|
sp-api = { path = "../../substrate/primitives/api", default-features = false }
|
|
sp-arithmetic = { path = "../../substrate/primitives/arithmetic", default-features = false, features = ["serde"] }
|
|
sp-authority-discovery = { path = "../../substrate/primitives/authority-discovery", default-features = false, features = ["serde"] }
|
|
sp-consensus-slots = { path = "../../substrate/primitives/consensus/slots", default-features = false, features = ["serde"] }
|
|
sp-io = { path = "../../substrate/primitives/io", default-features = false }
|
|
sp-keystore = { path = "../../substrate/primitives/keystore", optional = true }
|
|
sp-staking = { path = "../../substrate/primitives/staking", default-features = false, features = ["serde"] }
|
|
sp-std = { package = "sp-std", path = "../../substrate/primitives/std", default-features = false }
|
|
|
|
polkadot-core-primitives = { path = "../core-primitives", default-features = false }
|
|
polkadot-parachain-primitives = { path = "../parachain", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"application-crypto/std",
|
|
"bitvec/std",
|
|
"inherents/std",
|
|
"parity-scale-codec/std",
|
|
"polkadot-core-primitives/std",
|
|
"polkadot-parachain-primitives/std",
|
|
"primitives/std",
|
|
"runtime_primitives/std",
|
|
"scale-info/std",
|
|
"serde/std",
|
|
"sp-api/std",
|
|
"sp-arithmetic/std",
|
|
"sp-authority-discovery/std",
|
|
"sp-consensus-slots/std",
|
|
"sp-io/std",
|
|
"sp-keystore",
|
|
"sp-staking/std",
|
|
"sp-std/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"polkadot-parachain-primitives/runtime-benchmarks",
|
|
"runtime_primitives/runtime-benchmarks",
|
|
"sp-staking/runtime-benchmarks",
|
|
]
|