chore: update crates.io publish plan and fix dependencies

- Update CRATES_PUBLISH_PLAN.md with Level 0-2 completion status
- Fix binary-merkle-tree and related dependencies
- Add runtime_logger_tests.rs
- Update various Cargo.toml files
This commit is contained in:
2025-12-28 11:00:56 +03:00
parent 7382e95c28
commit ed44adfb1e
42 changed files with 408 additions and 396 deletions
+3 -3
View File
@@ -22,7 +22,7 @@ serde = { features = ["alloc", "derive"], workspace = true }
pezbp-runtime = { workspace = true }
# Bizinikiwi Dependencies
binary-merkle-tree = { workspace = true }
pez-binary-merkle-tree = { workspace = true }
pezframe-support = { workspace = true }
pezpallet-beefy-mmr = { workspace = true }
pezpallet-mmr = { workspace = true }
@@ -33,7 +33,7 @@ pezsp-std = { workspace = true }
[features]
default = ["std"]
std = [
"binary-merkle-tree/std",
"pez-binary-merkle-tree/std",
"codec/std",
"pezbp-runtime/std",
"pezframe-support/std",
@@ -46,7 +46,7 @@ std = [
"serde/std",
]
runtime-benchmarks = [
"binary-merkle-tree/runtime-benchmarks",
"pez-binary-merkle-tree/runtime-benchmarks",
"pezbp-runtime/runtime-benchmarks",
"pezframe-support/runtime-benchmarks",
"pezpallet-beefy-mmr/runtime-benchmarks",
+1 -1
View File
@@ -19,7 +19,7 @@
#![cfg_attr(not(feature = "std"), no_std)]
#![warn(missing_docs)]
pub use binary_merkle_tree::merkle_root;
pub use pez_binary_merkle_tree::merkle_root;
pub use pezpallet_beefy_mmr::BeefyEcdsaToEthereum;
pub use pezpallet_mmr::{
primitives::{DataOrHash as MmrDataOrHash, LeafProof as MmrProof},