479010094e
- Remove missing cli crate from workspace members - Fix TOML array syntax errors in pvf and benchmarking-cli Cargo.toml - Fix Rust import ordering with cargo fmt - Fix feature propagation with zepter (try-runtime, runtime-benchmarks, std)
57 lines
1.7 KiB
TOML
57 lines
1.7 KiB
TOML
[package]
|
|
name = "pezframe-support-procedural"
|
|
version = "23.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Proc macro of Support code for the runtime."
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
# Example requires pezframe-support/pezframe-system which creates circular dependency
|
|
# Tests moved to pezframe-support-test crate
|
|
# [[example]]
|
|
# name = "proc_main"
|
|
|
|
[dependencies]
|
|
Inflector = { workspace = true }
|
|
cfg-expr = { workspace = true }
|
|
derive-syn-parse = { workspace = true }
|
|
docify = { workspace = true }
|
|
expander = { workspace = true }
|
|
itertools = { workspace = true }
|
|
macro_magic = { features = ["proc_support"], workspace = true }
|
|
pezframe-support-procedural-tools = { workspace = true, default-features = true }
|
|
pezsp-crypto-hashing = { workspace = true }
|
|
proc-macro-warning = { workspace = true }
|
|
proc-macro2 = { workspace = true }
|
|
quote = { workspace = true }
|
|
syn = { features = ["full", "parsing", "visit-mut"], workspace = true }
|
|
|
|
# Dev-dependencies moved to pezframe-support-test to break circular dependency for crates.io publish
|
|
# Tests that need pezframe-benchmarking, pezframe-support, pezframe-system should use integration tests
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|
|
regex = { workspace = true }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [ "pezsp-crypto-hashing/std" ]
|
|
no-metadata-docs = []
|
|
experimental = []
|
|
# 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 = []
|
|
runtime-benchmarks = []
|