mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 01:07:57 +00:00
dcda0e50f5
* Fix build profiles Closes https://github.com/paritytech/polkadot-sdk/issues/1155 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Manually set version to 1.0.0 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use workspace repo Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * 'Authors and Edition from workspace Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
38 lines
1007 B
TOML
38 lines
1007 B
TOML
[package]
|
|
name = "frame-support-procedural"
|
|
version = "4.0.0-dev"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
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.4"
|
|
itertools = "0.10.3"
|
|
proc-macro2 = "1.0.56"
|
|
quote = "1.0.28"
|
|
syn = { version = "2.0.16", features = ["full"] }
|
|
frame-support-procedural-tools = { path = "tools" }
|
|
proc-macro-warning = { version = "0.4.1", default-features = false }
|
|
macro_magic = { version = "0.4.2", 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 = []
|