mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 21:37:56 +00:00
4292e18e50
* implement automatic parts * ui tests * rename * remove unnecessary exclude * better doc * better doc * fix genesis config * fix UI tests * fix UI test * Revert "fix UI test" This reverts commit a910351c0b24cfe42195cfd97d83a416640e3259. * implemented used_parts * Update frame/support/procedural/src/construct_runtime/mod.rs Co-authored-by: Keith Yeung <kungfukeith11@gmail.com> * doc + fmt * Update frame/support/procedural/src/construct_runtime/parse.rs Co-authored-by: Keith Yeung <kungfukeith11@gmail.com> * add doc in the macro * remove yet some more parts * fix ui test * more determnistic error message + fix ui tests * fix ui test * Apply suggestions from code review Co-authored-by: Keith Yeung <kungfukeith11@gmail.com> * do refactor + fix ui tests * fmt * fix test * fix test * fix ui test * Apply suggestions from code review Co-authored-by: Keith Yeung <kungfukeith11@gmail.com> * refactor * remove even more part in node-runtime * fix test * Add flow chart for the construct_runtime! execution flow * Fix typo * Ignore snippets that don't contain code * Refactor some code in expand_after * Rename expand_after to match_and_insert * cargo fmt * Fix rename * Remove frame_support argument to construct_runtime_parts * Make use of tt-call to simplify intermediate expansions * cargo fmt * Update match_and_insert documentation * Reset cursor to 0 when no matching patterns are found * Reorder struct fields on MatchAndInsertDef * Add test for dependency renames and fix frame-support import * Add more doc comments * Update frame/support/test/compile_pass/src/lib.rs Co-authored-by: Guillaume Thiolliere <gui.thiolliere@gmail.com> Co-authored-by: Keith Yeung <kungfukeith11@gmail.com> Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
65 lines
2.5 KiB
TOML
65 lines
2.5 KiB
TOML
[package]
|
|
name = "frame-support"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
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.126", optional = true, features = ["derive"] }
|
|
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false, features = ["derive", "max-encoded-len"] }
|
|
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
|
|
frame-metadata = { version = "14.0.0", default-features = false, features = ["v14"] }
|
|
sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" }
|
|
sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" }
|
|
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" }
|
|
sp-tracing = { version = "4.0.0-dev", default-features = false, path = "../../primitives/tracing" }
|
|
sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" }
|
|
sp-arithmetic = { version = "4.0.0-dev", 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" }
|
|
tt-call = "1.0.8"
|
|
frame-support-procedural = { version = "4.0.0-dev", default-features = false, path = "./procedural" }
|
|
paste = "1.0"
|
|
once_cell = { version = "1", default-features = false, optional = true }
|
|
sp-state-machine = { version = "0.10.0-dev", optional = true, path = "../../primitives/state-machine" }
|
|
bitflags = "1.3"
|
|
impl-trait-for-tuples = "0.2.1"
|
|
smallvec = "1.7.0"
|
|
log = { version = "0.4.14", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.3.0"
|
|
pretty_assertions = "1.0.0"
|
|
frame-system = { version = "4.0.0-dev", path = "../system" }
|
|
parity-util-mem = { version = "0.10.0", default-features = false, features = ["primitive-types"] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"once_cell",
|
|
"serde",
|
|
"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",
|
|
"frame-support-procedural/std",
|
|
"log/std",
|
|
]
|
|
runtime-benchmarks = []
|
|
try-runtime = []
|