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
fix(storage): desugar async fn in ColdConnect trait to specify Send bound
Addresses async-fn-in-trait clippy lint by explicitly desugaring async
fn to return impl Future + Send. This makes the Send bound explicit
and allows callers to know the future can be sent across threads.
Changes:
- Desugar ColdConnect::connect to return impl Future + Send
- Add #[allow(clippy::manual_async_fn)] to MDBX and EitherCold impls
- Fix redundant closures in error mapping
- Add Debug derive to StorageBuilder
- Add serial_test to workspace for test isolation
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
0 commit comments