-
Notifications
You must be signed in to change notification settings - Fork 11
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
Add Rc to Arc feature in async and multithread context #620
Comments
Tagging @V0ldek for notifications |
It's possible, but after the holiday break 😄 For now as a workaround you can make it struct RsonpathEngineWrap(RsonpathEngine);
unsafe impl Send for RsonpathEngineWrap {}
unsafe impl Sync for RsonpathEngineWrap {} This is safe because
In other words the |
Make release please) 9.3 |
|
Pinging me in the morning of Christmas Eve is unlikely to actually speed up a release 😛 If you're blocked, point your rsonpath-lib = { git = "https://github.com/rsonquery/rsonpath.git", rev = "37e907684173637191e3b42ea525d9a5ef0ab208" } |
Yes, I already use something like this, but for work I need to use the release version. Ok. I will be waiting. 🎅🏻 🎄 Merry Christmas! 🎁 ☃️ |
Thank you |
Is it possible to add feature to replace Rc in inner structures to Arc to use in async context?
The text was updated successfully, but these errors were encountered: