-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpretty-types.cabal
More file actions
97 lines (94 loc) · 3.49 KB
/
pretty-types.cabal
File metadata and controls
97 lines (94 loc) · 3.49 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
cabal-version: >=1.22
name: pretty-types
version: 0.4.0.0
synopsis: A small pretty printing DSL for complex types.
description: Please see README.md
homepage: https://github.com/sheyll/pretty-types#readme
license: BSD3
license-file: LICENSE
author: Sven Heyll
maintainer: sven.heyll@gmail.com
copyright: 2016-2021 Sven Heyll
category: Text
build-type: Simple
extra-source-files: README.md
, stack.yaml
, .travis.yml
, .gitignore
, ChangeLog.md
library
hs-source-dirs: src
exposed-modules: Data.Type.Pretty
build-depends: base >= 4.9 && < 5
, mtl >= 2.2 && < 3
, tagged >= 0.8 && < 1
default-language: Haskell2010
ghc-options: -Wall -funbox-strict-fields -fno-warn-unused-do-bind
default-extensions: BangPatterns
, ConstraintKinds
, CPP
, DataKinds
, DefaultSignatures
, DeriveDataTypeable
, DeriveFunctor
, DeriveGeneric
, FlexibleInstances
, FlexibleContexts
, FunctionalDependencies
, GADTs
, GeneralizedNewtypeDeriving
, KindSignatures
, MultiParamTypeClasses
, OverloadedStrings
, QuasiQuotes
, RecordWildCards
, RankNTypes
, ScopedTypeVariables
, StandaloneDeriving
, TemplateHaskell
, TupleSections
, TypeFamilies
, TypeInType
, TypeOperators
, TypeSynonymInstances
test-suite spec
type: exitcode-stdio-1.0
ghc-options: -Wall
hs-source-dirs: spec
main-is: PrettyTypesSpec.hs
build-depends: base >= 4.9 && < 5
, hspec
, pretty-types
, tagged >= 0.8 && < 1
default-language: Haskell2010
default-extensions: BangPatterns
, ConstraintKinds
, CPP
, DataKinds
, DefaultSignatures
, DeriveDataTypeable
, DeriveFunctor
, DeriveGeneric
, FlexibleInstances
, FlexibleContexts
, FunctionalDependencies
, GADTs
, GeneralizedNewtypeDeriving
, KindSignatures
, MultiParamTypeClasses
, OverloadedStrings
, QuasiQuotes
, RecordWildCards
, RankNTypes
, ScopedTypeVariables
, StandaloneDeriving
, TemplateHaskell
, TupleSections
, TypeFamilies
, TypeInType
, TypeOperators
, TypeSynonymInstances
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-missing-signatures
source-repository head
type: git
location: https://github.com/sheyll/pretty-types