-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtext1.cabal
106 lines (87 loc) · 2.68 KB
/
text1.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
name: text1
version: 0.0.7.4
license: BSD3
license-file: LICENCE
author: Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
maintainer: Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
copyright: Copyright (C) 2020-2021 Tony Morris
synopsis: Non-empty values of `Data.Text`.
category: Data
description:
<<https://system-f.gitlab.io/logo/systemf-450x450.jpg>>
.
Non-empty values of `Data.Text`.
homepage: https://github.com/system-f/text1
bug-reports: https://github.com/system-f/text1/issues
cabal-version: >= 1.10
build-type: Simple
extra-source-files: changelog.md
tested-with: GHC == 7.4.2
, GHC == 7.6.3
, GHC == 7.8.4
, GHC == 7.10.3
, GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.3
, GHC == 8.6.1
, GHC == 8.6.5
source-repository head
type: git
location: [email protected]:system-f/text1.git
library
default-language:
Haskell2010
build-depends:
base >= 4.5 && < 6
, semigroups >= 0.8 && < 1
, semigroupoids
, text >= 1.2.3.0 && < 2
, lens >= 4.0 && < 6
, binary >= 0.5 && < 1
ghc-options:
-Wall
default-extensions:
NoImplicitPrelude
hs-source-dirs:
src
exposed-modules:
Data.Text1
Data.Text1.AsSingle
Data.Text1.Text1
Data.Text1.IsText1
test-suite hunit
type:
exitcode-stdio-1.0
main-is:
hunit.hs
default-language:
Haskell2010
build-depends:
base >= 4.5 && < 6
, HUnit >= 1.2 && < 1.7
, lens >= 4.0 && < 6
, text >= 1.2.3.0 && < 2
, text1
ghc-options:
-Wall
-threaded
hs-source-dirs:
tests
test-suite quickcheck
type:
exitcode-stdio-1.0
main-is:
quickcheck.hs
default-language:
Haskell2010
build-depends:
base >= 4.5 && < 6
, QuickCheck >= 2.9 && < 2.13
, semigroups >= 0.8 && < 1
, text >= 1.2 && < 2
, text1
ghc-options:
-Wall
-threaded
hs-source-dirs:
tests