From 37b4ab2fb50cd0ac384a9d1ff4e5c0578aed4e0e Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Wed, 24 Dec 2025 07:19:29 +0300 Subject: [PATCH] fix: add subxt native feature propagation to umbrella node feature MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pezkuwi-subxt, pezkuwi-subxt-rpcs, and pezkuwi-subxt-lightclient all require either 'native' or 'web' feature to be enabled. When umbrella's node feature enables these dependencies with default-features = false, the default 'native' feature is not propagated, causing compile_error! in all three crates. Added "dep?/native" propagation for all three subxt crates in the node feature. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- umbrella/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/umbrella/Cargo.toml b/umbrella/Cargo.toml index a548e0ca..49406ba4 100644 --- a/umbrella/Cargo.toml +++ b/umbrella/Cargo.toml @@ -1067,12 +1067,15 @@ node = [ "pezkuwi-statement-distribution", "pezkuwi-statement-table", "pezkuwi-subxt", + "pezkuwi-subxt?/native", "pezkuwi-subxt-codegen", "pezkuwi-subxt-core", "pezkuwi-subxt-lightclient", + "pezkuwi-subxt-lightclient?/native", "pezkuwi-subxt-macro", "pezkuwi-subxt-metadata", "pezkuwi-subxt-rpcs", + "pezkuwi-subxt-rpcs?/native", "pezkuwi-subxt-signer", "pezkuwi-subxt-utils-fetchmetadata", "pezkuwi-subxt-utils-stripmetadata",