Open hinto-janai opened 1 year ago
Fixes https://github.com/bcmyers/num-format/issues/40.
The culprit was deserialize_bytes() which was changed to deserialize_seq().
deserialize_bytes()
deserialize_seq()
Previously working serde operations (JSON, TOML) seem to work fine, and now binary formats work as well.
A test for bincode was added as well.
bincode
Fixes https://github.com/bcmyers/num-format/issues/40.
The culprit was
deserialize_bytes()
which was changed todeserialize_seq()
.Previously working serde operations (JSON, TOML) seem to work fine, and now binary formats work as well.
A test for
bincode
was added as well.