-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathtext-class.cabal
73 lines (70 loc) · 1.54 KB
/
text-class.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
70
71
72
73
name: text-class
version: 0.2024.9.3
synopsis: Extra helpers to convert data-types to and from Text
homepage: https://github.com/cardano-foundation/cardano-wallet
author: Cardano Foundation (High Assurance Lab)
maintainer: [email protected]
copyright: 2018-2020 IOHK
license: Apache-2.0
category: Web
build-type: Simple
cabal-version: >=1.10
flag release
description: Enable optimization and `-Werror`
default: False
manual: True
library
default-language:
Haskell2010
default-extensions:
NoImplicitPrelude
OverloadedStrings
ghc-options:
-Wall
-Wcompat
-fwarn-redundant-constraints
if (flag(release))
ghc-options: -O2 -Werror
build-depends:
base
, casing
, extra
, formatting
, text
, time
, hspec
, OddWord
, QuickCheck
hs-source-dirs:
src
exposed-modules:
Data.Text.Class
Test.Text.Roundtrip
test-suite unit
default-language:
Haskell2010
default-extensions:
NoImplicitPrelude
OverloadedStrings
ghc-options:
-threaded -rtsopts
-Wall
if (flag(release))
ghc-options: -O2 -Werror
build-depends:
base
, hspec
, QuickCheck
, text
, text-class
, time
build-tool-depends:
hspec-discover:hspec-discover
type:
exitcode-stdio-1.0
hs-source-dirs:
test/unit
main-is:
text-class-unit-test.hs
other-modules:
Data.Text.ClassSpec