mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 11:07:56 +00:00
18df38a4b6
* update to macro_magic 0.4.0 * remove deprecated syntax and related doc comments * upgrade to macro_magic v0.4.1 * fix import issue * fix UI tests * resolve frame_support path properly * add docs note about importing * fix typo * Update frame/support/procedural/src/lib.rs Co-authored-by: Guillaume Yu Thiolliere <gui.thiolliere@gmail.com> * revert UI tests changes because we can't use rust 1.70 * fix UI tests * fix another UI test * use simplified import style * switch back import since tests are written expecting it that way --------- Co-authored-by: Guillaume Yu Thiolliere <gui.thiolliere@gmail.com>
38 lines
1.1 KiB
TOML
38 lines
1.1 KiB
TOML
[package]
|
|
name = "frame-support-procedural"
|
|
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 = "Proc macro of Support code for the runtime."
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
derive-syn-parse = "0.1.5"
|
|
Inflector = "0.11.4"
|
|
cfg-expr = "0.15.1"
|
|
itertools = "0.10.3"
|
|
proc-macro2 = "1.0.56"
|
|
quote = "1.0.28"
|
|
syn = { version = "2.0.16", features = ["full"] }
|
|
frame-support-procedural-tools = { version = "4.0.0-dev", path = "./tools" }
|
|
proc-macro-warning = { version = "0.4.1", default-features = false }
|
|
macro_magic = { version = "0.4.1", features = ["proc_support"] }
|
|
expander = "2.0.0"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
no-metadata-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 = []
|
|
tuples-128 = []
|