ea341084f0
- Fix serde optional dependency issues by adding dep:serde to serde features (24 crates) - Run zepter to propagate runtime-benchmarks, std, try-runtime, serde, experimental, with-tracing, tuples-96 features - Regenerate umbrella crate with proper feature propagation - Format all TOML files with taplo This resolves check-umbrella and check-zepter CI failures.
54 lines
1.3 KiB
TOML
54 lines
1.3 KiB
TOML
[package]
|
|
name = "pezkuwi-subxt-codegen"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
publish = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
homepage.workspace = true
|
|
description = "Generate an API for interacting with a Pezkuwi/Bizinikiwi node from FRAME metadata"
|
|
|
|
[features]
|
|
default = []
|
|
web = ["getrandom/js"]
|
|
std = [
|
|
"codec/std",
|
|
"frame-metadata?/std",
|
|
"getrandom?/std",
|
|
"pezkuwi-subxt-metadata/std",
|
|
"scale-info/std",
|
|
]
|
|
serde = []
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", workspace = true, features = ["derive"] }
|
|
frame-metadata = { workspace = true, optional = true }
|
|
heck = { workspace = true }
|
|
pezkuwi-subxt-metadata = { workspace = true }
|
|
proc-macro2 = { workspace = true }
|
|
quote = { workspace = true }
|
|
scale-info = { workspace = true }
|
|
scale-typegen = { workspace = true }
|
|
syn = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
# Included if "web" feature is enabled, to enable its js feature.
|
|
getrandom = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
frame-metadata = { workspace = true }
|
|
scale-info = { workspace = true, features = ["bit-vec"] }
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["default"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[package.metadata.playground]
|
|
default-features = true
|
|
|
|
[lints]
|
|
workspace = true
|