chore(versionbump): FromJSON instance added to MergeHashMap

This commit is contained in:
Stephan Barth 2024-10-06 18:13:31 +02:00
parent 9e48b4b8c1
commit cd66e5827a

View File

@ -1852,7 +1852,7 @@ newtype MergeHashMap k v = MergeHashMap { unMergeHashMap :: HashMap k v }
deriving (Show, Generic, Data)
deriving newtype ( Eq, Ord, Hashable
, Functor, Foldable, NFData
, ToJSON
, ToJSON, FromJSON
)
makePrisms ''MergeHashMap