Closed dlthomas-leapyear closed 6 years ago
Newer versions of hashable define a Hashable a => Hashable (Identity a) instance, older ones don't. Re-exporting everything while adding that instance if necessary lets us work with both versions.
hashable
Hashable a => Hashable (Identity a)
If we can put that explanation in the commit message, that looks good to me
:+1:
Newer versions of
hashable
define aHashable a => Hashable (Identity a)
instance, older ones don't. Re-exporting everything while adding that instance if necessary lets us work with both versions.