Crates.io | fuzzcheck_serializer |
lib.rs | fuzzcheck_serializer |
version | 0.6.0 |
source | src |
created_at | 2020-06-06 14:37:57.748486 |
updated_at | 2021-02-20 10:35:47.487792 |
description | Basic serializers to use with fuzzcheck-rs |
homepage | |
repository | https://git.sr.ht/~loic/fuzzcheck-rs |
max_upload_size | |
id | 250703 |
size | 6,516 |
This crate provides implementations of the Serializer
trait defined by
fuzzcheck.
There are currently two choices:
ByteSerializer
serializes a Vec<u8>
by directly writing the bits to
a file. You can choose the file extension.SerdeSerializer
uses serde
and serde_json
to serialize any
serde-Serializable
type to a json file. Accessible through the serde-json
feature.JsonSerializer
is a lightweight alternative to SerdeSerializer
that uses
the json
and decent-serde-json-alternative
crates. Accessible through the
serde-json-alternative
feature.