serde-hex
serde-hex copied to clipboard
Rust crate for easy serialization/deserialization of hexadecimal values.
Resolves #7. There is some duplication between the visitors so there is potential for follow-up work. The feature works however and is tested with 2 additional tests I added. Let...
Dear maintainer, A set of pull requests have been waiting for integration since some months without any feedback. Maintaining software is not an easy task, and the motivation may go...
This create is just what I need for use with serde_json. Unfortunately, it doubles the length of all arrays when used with bincode, etc. Is there a way of ignoring...
A set of warnings is appearing when compiling with this toolchain: ``` warning: trait objects without an explicit `dyn` are deprecated --> src/types.rs:94:32 | 94 | fn cause(&self) -> Option...
This commit removes all the warnings that appeared when compiling the crate with a recent toolchain version: rustc 1.44.1 (c7087fe00 2020-06-17)
It would be really nice if this crate could work without needing any dependencies (apart from serde itself).
First, thanks for this awesome crate! It makes working with hex-encoded data really a breeze :) We've ran into a nasty problem though when working with owned data. Concretely, given...
I was wondering isn't it better for this to error? Although the hex string is valid, it's 33 bytes when decoded. Currently it just cut's the last byte. ``` let...
As it stands, configuration must be applied as a generic type parameter (e.g. `SerHex::`). All possible combinations are represented as individual unit structs in the `config` module. This is going...