-
Notifications
You must be signed in to change notification settings - Fork 3
/
facts.cabal
41 lines (38 loc) · 1.43 KB
/
facts.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
name: facts
version: 0.0.1.0
cabal-version: 1.18
tested-with: GHC==8.2.2, GHC==8.4.3, GHC==8.6.1
license: BSD3
license-file: LICENSE.md
author: Mark Karpov <markkarpov92@gmail.com>
maintainer: Mark Karpov <markkarpov92@gmail.com>
homepage: https://github.com/mrkkrp/facts
bug-reports: https://github.com/mrkkrp/facts/issues
category: Data
synopsis: Refined types
build-type: Simple
description: Refined types.
extra-doc-files: CHANGELOG.md
, README.md
source-repository head
type: git
location: https://github.com/mrkkrp/facts.git
flag dev
description: Turn on development settings.
manual: True
default: False
library
build-depends: base >= 4.10 && < 5.0
, exceptions >= 0.6 && < 0.11
, mtl >= 2.0 && < 3.0
, template-haskell >= 2.10 && < 2.15
exposed-modules: Data.Refined
if flag(dev)
ghc-options: -Wall -Werror -Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wnoncanonical-monad-instances
-Wnoncanonical-monadfail-instances
else
ghc-options: -Wall
default-language: Haskell2010