-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlazify.cabal
69 lines (64 loc) · 2.15 KB
/
lazify.cabal
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
cabal-version: 2.0
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.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
license-file: LICENSE
author: David Feuer
maintainer: [email protected]
copyright: 2019 David Feuer
category: Data
build-type: Simple
extra-source-files: CHANGELOG.md
library
exposed-modules:
Data.Lazify
Data.Lazify.Internal
Data.Lazify.Generic
Data.Lazify.Generic.Internal
-- other-modules:
-- other-extensions:
build-depends:
-- We need GHC >= 8.0 because Generics, sadly, didn't offer type-level
-- metadata until then. I don't believe there is any way to work around
-- this limitation.
base >=4.10.0 && <4.16
, transformers >= 0.6 && < 0.7
, containers >= 0.5.8.1 && < 0.7
, tagged >= 0.8.6 && < 1
if(impl(ghc>=9.0.1))
build-depends:
-- We need this for Solo. Soon it will be exposed
-- in base, at which point we can put an upper bound
-- on this awful dependency.
ghc-prim
hs-source-dirs: src
default-language: Haskell2010
test-suite lazify-properties
hs-source-dirs: tests
main-is: lazify-properties.hs
type: exitcode-stdio-1.0
build-depends:
base
, lazify
default-language: Haskell2010
test-suite lazifyg-properties
hs-source-dirs: tests
main-is: lazifyg-properties.hs
type: exitcode-stdio-1.0
build-depends:
base
, lazify
default-language: Haskell2010