Remove circular dev-dependencies for crates.io publishing

- pezpallet-balances: removed pezpallet-transaction-payment dev-dep
- pezpallet-utility: removed pezpallet-root-testing dev-dep
- pezframe-benchmarking-cli: removed frame-storage-access-test-runtime dep
- frame-storage-access-test-runtime: removed bizinikiwi-wasm-builder, pezcumulus-pezpallet-teyrchain-system deps

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-28 19:43:15 +03:00
parent ac83fc416d
commit 84e02d373d
7 changed files with 74 additions and 83 deletions
@@ -16,30 +16,26 @@ workspace = true
[dependencies]
codec = { features = ["derive"], workspace = true }
pezcumulus-pezpallet-teyrchain-system = { workspace = true, optional = true }
# pezcumulus-pezpallet-teyrchain-system moved to integration tests to break circular dependency
pezsp-core = { workspace = true }
pezsp-runtime = { workspace = true }
pezsp-state-machine = { workspace = true }
pezsp-trie = { workspace = true }
# bizinikiwi-wasm-builder moved to integration tests to break circular dependency
[build-dependencies]
bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features = true }
[features]
default = ["std"]
no_std = []
std = [
"bizinikiwi-wasm-builder",
"codec/std",
"pezcumulus-pezpallet-teyrchain-system/std",
"pezsp-core/std",
"pezsp-runtime/std",
"pezsp-state-machine/std",
"pezsp-trie/std",
]
runtime-benchmarks = [
"bizinikiwi-wasm-builder?/runtime-benchmarks",
"pezcumulus-pezpallet-teyrchain-system/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
"pezsp-state-machine/runtime-benchmarks",
"pezsp-trie/runtime-benchmarks",
@@ -15,14 +15,5 @@
// See the License for the specific language governing permissions and
// limitations under the License.
fn main() {
#[cfg(feature = "std")]
{
bizinikiwi_wasm_builder::WasmBuilder::new()
.with_current_project()
.export_heap_base()
.import_memory()
.disable_runtime_version_section_check()
.build();
}
}
// bizinikiwi-wasm-builder moved to integration tests to break circular dependency
fn main() {}