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
{{ message }}
This repository was archived by the owner on Aug 15, 2025. It is now read-only.
The documentation at https://docs.rs/bincode/1.3.1/bincode/config/trait.Options.html says that the default int encoding is varint. If you use DefaultOptions, that's true: bincode::DefaultOptions::new().serialize_into(...) will use varint encoding. However, the top-level functions like bincode::serialize_into say they use "the default configuration", but they appear to use fixint encoding.