1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
cabal-version: 1.18
name: deepseq-generics
version: 0.2.0.1
synopsis: GHC.Generics-based Control.DeepSeq.rnf implementation
homepage: https://github.com/haskell-hvr/deepseq-generics
bug-reports: https://github.com/haskell-hvr/deepseq-generics/issues
license: BSD3
license-file: LICENSE
author: Herbert Valerio Riedel
maintainer: https://github.com/haskell-hvr
copyright: 2012, Herbert Valerio Riedel
category: Control
build-type: Simple
tested-with:
GHC == 9.14.1
GHC == 9.12.2
GHC == 9.10.2
GHC == 9.8.4
GHC == 9.6.7
GHC == 9.4.8
GHC == 9.2.8
GHC == 9.0.2
GHC == 8.10.7
GHC == 8.8.4
GHC == 8.6.5
GHC == 8.4.4
GHC == 8.2.2
GHC == 8.0.2
description:
This package provides a "GHC.Generics"-based
'Control.DeepSeq.Generics.genericRnf' function which can be used
for providing a 'rnf' implementation. See the documentation for
the 'genericRnf' function in the "Control.DeepSeq.Generics" module
to get started.
.
The original idea was pioneered in the @generic-deepseq@ package
(see <http://www.haskell.org/pipermail/haskell-cafe/2012-February/099551.html>
for more information).
.
This package differs from the @generic-deepseq@ package by working
in combination with the existing @deepseq@ package as opposed to
defining a conflicting drop-in replacement for @deepseq@'s
@Control.DeepSeq@ module.
.
__Note__: The ability to auto-derive via "GHC.Generics" has been
merged into @deepseq-1.4.0.0@. This package is now still useful
for writing code that's also compatible with older @deepseq@
versions not yet providing "GHC.Generics"-support.
extra-doc-files: changelog.md
source-repository head
type: git
location: https://github.com/haskell-hvr/deepseq-generics.git
library
default-language: Haskell2010
exposed-modules: Control.DeepSeq.Generics
build-depends: base >= 4.9 && < 5
, deepseq >= 1.2.0.1 && < 1.6
other-extensions: BangPatterns, FlexibleContexts, TypeOperators
ghc-options: -Wall
test-suite deepseq-generics-tests
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Suite.hs
other-extensions: CPP, DeriveGeneric, TupleSections
ghc-options: -Wall
build-depends:
base
, deepseq
, deepseq-generics
-- end of packages with inherited version constraints
, test-framework >= 0.6.1 && < 0.9
, test-framework-hunit >= 0.2.2 && < 0.9
, HUnit >= 1.2.5 && < 1.7
|