pyfisch/cbor

Implement Hash trait for Value

pyfisch opened this issue · 0 comments

The serde_cbor::Value should implement std::hash::Hash, so it can be used in HashMap and others.

This is a bit work as k1 == k2 -> hash(k1) == hash(k2) must hold.

If you need this, please leave a comment.

See also #47