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
Introduced an explicit std feature (enabled by default) and made the core
crate compile in no_std + alloc environments, including metadata builders
and error helpers.
Changed
Reworked AppError internals to rely on core/alloc primitives and core::error::Error, providing std::error::Error only when the std
feature is active.
Replaced thiserror derives on AppErrorKind with manual Display/error
implementations so the taxonomy remains available without the standard
library.