ipld / libipld

Rust IPLD library
Apache License 2.0
135 stars 40 forks source link

Make the deserializer human-unreadable #165

Closed samuelburnham closed 1 year ago

samuelburnham commented 1 year ago

Currently, the Serializer sets is_human_readable to false, but the Deserializer implicitly sets it to true. This causes issues when other types try to use serde based on this value, as in https://github.com/zcash/pasta_curves/pull/48, so this PR makes them consistently false.