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
For now it is impossible to use this library in a concurrent context because it uses some trait objects that are not Send nor Sync, leading to the future returned by the encoding/decoding function to be not Send. However adding those bounds is not enough, as it triggers a Rust compiler issue rust-lang/rust#100013
The text was updated successfully, but these errors were encountered:
For now it is impossible to use this library in a concurrent context because it uses some trait objects that are not
Send
norSync
, leading to the future returned by the encoding/decoding function to be notSend
. However adding those bounds is not enough, as it triggers a Rust compiler issue rust-lang/rust#100013The text was updated successfully, but these errors were encountered: