You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add no_std support for embedded environments where std is not available:
Replace collection imports from std with imports from alloc::
Replace instances of io::Write with core2::Write only if no_std is enabled
For usages of HashMap consider replacing them with BTreeMap, or hashbrown's hashmap. sigma-rust already uses hashbrown::HashMap internally in some places
Make p2p crate an optional feature in ergo-lib. This would also be useful for normal library users since ergo-p2p brings in tokio as a dependency
The text was updated successfully, but these errors were encountered:
Add no_std support for embedded environments where std is not available:
The text was updated successfully, but these errors were encountered: