mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-16 22:31:03 +00:00
4175ed6a87
* Update proc-macro-warning Closes https://github.com/paritytech/substrate/issues/13872 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update to v0.3.1 (including syn 2.0) Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Revert "Update to v0.3.1 (including syn 2.0)" CI is red since it Polkadot uses a different syn version… Going to update it lean. This reverts commit 3240d379b72f6f722eaf502ed49e9a1b0f79db4b. Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
32 lines
802 B
TOML
32 lines
802 B
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.10.3"
|
|
itertools = "0.10.3"
|
|
proc-macro2 = "1.0.56"
|
|
quote = "1.0.26"
|
|
syn = { version = "2.0.14", features = ["full"] }
|
|
frame-support-procedural-tools = { version = "4.0.0-dev", path = "./tools" }
|
|
proc-macro-warning = { version = "0.3.0", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
no-metadata-docs = []
|