78095d125e
1. TOML format (taplo): 123 files reformatted using correct config - Command: taplo format --config .config/taplo.toml 2. Zepter feature propagation fix: - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature 3. generate-umbrella.py bug fix: - Script crashed when Cargo.toml/src didn't exist in umbrella dir - Added existence checks before deletion
35 lines
808 B
TOML
35 lines
808 B
TOML
[package]
|
|
name = "pezkuwi-subxt-utils-stripmetadata"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
publish = true
|
|
autotests = false
|
|
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
homepage.workspace = true
|
|
description = "subxt utility to strip metadata"
|
|
|
|
[dependencies]
|
|
codec = { workspace = true }
|
|
either = { workspace = true }
|
|
frame-metadata = { workspace = true, features = ["current", "std"] }
|
|
scale-info = { workspace = true, features = ["std"] }
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["url"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[package.metadata.playground]
|
|
default-features = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
std = ["codec/std", "either/std", "frame-metadata/std", "scale-info/std"]
|
|
serde = []
|