mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
The reth-chain crate is inherently std-only (uses BTreeMap, Arc, etc.) and was breaking the riscv32imac no_std builds by pulling in serde_core which doesn't support no_std properly. This makes reth-chain optional and only enables it when std feature is active, gating the block_writer module that uses Chain behind std.