-
-
Notifications
You must be signed in to change notification settings - Fork 195
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
Use Arc
for SeaRc
with feature flag
#105
Comments
I think you encountered a problem in SeaORM. |
Yes this is an error I encountered in SeaORM. I don't know of any workaround, it seems like the only option is that SeaRc to be changed to Arc. I agree that enabling this in SeaORM by default would be best 👍 |
Thanks for the commits for this. Unfortunately, I get an error still with SeaORM with my same code:
I have enabled the |
Please open an issue in SeaORM |
Given the following function in a tokio runtime:
An error is thrown due to
SeaRc
not implementingSend
.pub use std::rc::Rc as SeaRc;
should be updated to useArc
instead ofRc
, either perminently or through a feature flag.The text was updated successfully, but these errors were encountered: