mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14:37:57 +00:00
77321288c3
* Fix std, runtime-benchmarks and try-runtime features zepter lint propagate-feature --feature try-runtime --left-side-feature-missing=ignore --workspace --fix --feature-enables-dep="try-runtime:frame-try-runtime" zepter lint propagate-feature --feature runtime-benchmarks --left-side-feature-missing=ignore --workspace --fix --feature-enables-dep="runtime-benchmarks:frame-benchmarking" zepter lint propagate-feature --feature std --left-side-feature-missing=ignore --workspace --fix Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add propagate feature CI check Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Test CI by adding an error Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use --locked Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add help msg Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Revert "Test CI by adding an error" This reverts commit cf4ff6cc0632269b0a109e547686e5e3314b02de. * Test CI by adding an error Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * No newline in help msg Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Revert "Test CI by adding an error" This reverts commit 5daa06ada8e01f5bebafb9d1c76804dd79bc1006. * Test CI by adding an error Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Revert "Test CI by adding an error" This reverts commit ca15de5729507a564f140a10ec2e87b19516ec4c. * Fix msg Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Revert back to master Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Re-do with Zepter v0.7.4 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update Zepter to 0.7.4 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Disable rococo try-runtime check Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Apply suggestions from code review Co-authored-by: Bastian Köcher <git@kchr.de> * More review fixes Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Bastian Köcher <git@kchr.de>
101 lines
4.1 KiB
TOML
101 lines
4.1 KiB
TOML
[package]
|
|
name = "frame-support"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Support code for the runtime."
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.163", default-features = false, features = ["alloc", "derive"] }
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive", "max-encoded-len"] }
|
|
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
|
frame-metadata = { version = "16.0.0", default-features = false, features = ["current"] }
|
|
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../primitives/api", features = [ "frame-metadata" ] }
|
|
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
|
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
|
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
|
sp-tracing = { version = "10.0.0", default-features = false, path = "../../primitives/tracing" }
|
|
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
|
sp-arithmetic = { version = "16.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
|
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../primitives/inherents" }
|
|
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" }
|
|
sp-weights = { version = "20.0.0", default-features = false, path = "../../primitives/weights" }
|
|
sp-debug-derive = { default-features = false, path = "../../primitives/debug-derive" }
|
|
tt-call = "1.0.8"
|
|
macro_magic = "0.4.2"
|
|
frame-support-procedural = { version = "4.0.0-dev", default-features = false, path = "./procedural" }
|
|
paste = "1.0"
|
|
sp-state-machine = { version = "0.28.0", default-features = false, optional = true, path = "../../primitives/state-machine" }
|
|
bitflags = "1.3"
|
|
impl-trait-for-tuples = "0.2.2"
|
|
smallvec = "1.11.0"
|
|
log = { version = "0.4.17", default-features = false }
|
|
sp-core-hashing-proc-macro = { version = "9.0.0", path = "../../primitives/core/hashing/proc-macro" }
|
|
k256 = { version = "0.13.1", default-features = false, features = ["ecdsa"] }
|
|
environmental = { version = "1.1.4", default-features = false }
|
|
sp-genesis-builder = { version = "0.1.0", default-features=false, path = "../../primitives/genesis-builder" }
|
|
serde_json = { version = "1.0.85", default-features = false, features = ["alloc"] }
|
|
|
|
aquamarine = { version = "0.3.2" }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.3.0"
|
|
pretty_assertions = "1.2.1"
|
|
frame-system = { version = "4.0.0-dev", path = "../system" }
|
|
array-bytes = "6.1"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"sp-core/std",
|
|
"k256/std",
|
|
"serde/std",
|
|
"sp-api/std",
|
|
"sp-io/std",
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"sp-std/std",
|
|
"sp-runtime/std",
|
|
"sp-tracing/std",
|
|
"sp-arithmetic/std",
|
|
"frame-metadata/std",
|
|
"sp-inherents/std",
|
|
"sp-staking/std",
|
|
"sp-state-machine/std",
|
|
"sp-weights/std",
|
|
"frame-support-procedural/std",
|
|
"log/std",
|
|
"environmental/std",
|
|
"sp-genesis-builder/std",
|
|
"frame-system/std",
|
|
"sp-debug-derive/std"
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-system/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"sp-staking/runtime-benchmarks"
|
|
]
|
|
try-runtime = [
|
|
"sp-debug-derive/force-debug",
|
|
"frame-system/try-runtime",
|
|
"sp-runtime/try-runtime"
|
|
]
|
|
experimental = []
|
|
# By default some types have documentation, `no-metadata-docs` allows to reduce the documentation
|
|
# in the metadata.
|
|
no-metadata-docs = ["frame-support-procedural/no-metadata-docs", "sp-api/no-metadata-docs"]
|
|
# By default some types have documentation, `full-metadata-docs` allows to add documentation to
|
|
# more types in the metadata.
|
|
full-metadata-docs = ["scale-info/docs"]
|
|
# Generate impl-trait for tuples with the given number of tuples. Will be needed as the number of
|
|
# pallets in a runtime grows. Does increase the compile time!
|
|
tuples-96 = ["frame-support-procedural/tuples-96"]
|
|
tuples-128 = ["frame-support-procedural/tuples-128"]
|