diff --git a/lazify.cabal b/lazify.cabal index 51039d4..78470cd 100644 --- a/lazify.cabal +++ b/lazify.cabal @@ -1,17 +1,19 @@ cabal-version: 2.0 --- Initial package description 'lazify.cabal' generated by 'cabal --- init'. For further documentation, see --- http://haskell.org/cabal/users-guide/ Tested-With: GHC ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.4 || ==9.0.1 name: lazify -version: 0.1.0.0 +version: 0.1.0.1 synopsis: A simple utility for lazy record matching description: . Since early Haskell history, it's been convenient to make values stricter using `seq`. Making them lazier has always been a bit of a chore. This package offers tools for doing so. + + . + For an idiomatic classy approach with generic defaults, use + "Data.Lazify". To just go with whatever the generics say + (aside from overlapping instances), use "Data.Lazify.Generic". homepage: https://github.com/treeowl/lazify bug-reports: https://github.com/treeowl/lazify/issues license: BSD3