hyperledger-iroha / iroha

Iroha - A simple, enterprise-grade decentralized ledger
https://wiki.hyperledger.org/display/iroha
Apache License 2.0
438 stars 280 forks source link

implement `core::error::Error` in `no_std` #5052

Open mversic opened 1 month ago

mversic commented 1 month ago

after migration to Rust 1.81 it's now possible to implement Error trait in no_std

DCNick3 commented 1 month ago

This would be blocked on thiserror merging the relevant functionality I think, since we use it in a bunch of places for deriving Error

https://github.com/dtolnay/thiserror/pull/304