reth icon indicating copy to clipboard operation
reth copied to clipboard

Fix various compilation errors for no-std in crates

Open mattsse opened this issue 1 year ago • 10 comments

Describe the feature

crates that are offending cargo c --no-default-features

  • ethereum-forks
  • primitives
  • primitives-traits
  • ...

TODO

  • fix by doing various fix like
#[cfg(not(feature = "std"))]
use alloc::vec::Vec;

extern crate alloc

etc

Additional context

No response

mattsse avatar Jul 12 '24 17:07 mattsse