-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove unnecessary boxfutures #3525
base: main
Are you sure you want to change the base?
Conversation
It seems like the stack is overflowing in debug mode, in release mode the tests pass. |
We probably need to do the same thing to |
The |
I opened a new pr for this (#3529) |
095c5b4
to
5e59a2a
Compare
… ConnectOptions, TestSupport, PgPoolCopyExt
95f6986
to
257d869
Compare
This is a breaking change
This pr removes unnecessary
BoxFuture
's in trait definitionsConnection
,MigrateDatabase
,TransactionManager
,ConnectOptions
,TestSupport
andPgPoolCopyExt
.I was not able to make these changes to the
Executor
andAcquire
traits unfortunately because of a rustc limitation.