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
Managing error handling in no_std crates that rely on dusk-plonk it's quite tough since all of the errors use anyhow::Result and anyhow::Error. This is a problem since anyhow always gets inclued and it's no_std version forces to include allocators which might not be desired.
The idea is to create new types for the plonk errors that are no-std compatible and that impl display and other std-related stuff under a std flag.