kurtbuilds / ormlite

An ORM in Rust for developers that love SQL.
https://crates.io/crates/ormlite
MIT License
216 stars 11 forks source link

macros: remove `use ::ormlite::__private::StreamExt` #44

Closed nitn3lav closed 5 months ago

nitn3lav commented 5 months ago

Replace use ::ormlite::__private::StreamExt and subsequent calls to stream.try_next() with ::ormlite::__private::StreamExt::try_next(&mut stream). This resolves an issue that occurs when futures_util::TryStreamExt is in scope.

kurtbuilds commented 5 months ago

Easy change. Thank you for the PR!