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
You should know that the use of #[cfg(target_pointer_width = "64")] and the 32 equivalent makes this crate incompatible with serde, as a filter serialised on a 64bits arch, sent over the network, and deserialised on a 32bits arch, will panic. This is specially the case for code that communicates from binary compiled Rust on one side, and a WASM32 JS runtime on the other side.
The text was updated successfully, but these errors were encountered:
You should know that the use of
#[cfg(target_pointer_width = "64")]
and the 32 equivalent makes this crate incompatible with serde, as a filter serialised on a 64bits arch, sent over the network, and deserialised on a 32bits arch, will panic. This is specially the case for code that communicates from binary compiled Rust on one side, and a WASM32 JS runtime on the other side.The text was updated successfully, but these errors were encountered: