cbor
cbor copied to clipboard
Implement Hash trait for Value
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