-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathunicode-tricks.cabal
151 lines (148 loc) · 4.29 KB
/
unicode-tricks.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
name: unicode-tricks
version: 0.14.1.0
synopsis: Functions to work with unicode blocks more convenient.
description:
A package that makes rendering of frames, blocks, subscript and superscript
more convenient.
homepage: https://github.com/hapytex/unicode-tricks#readme
license: BSD3
license-file: LICENSE
author: Willem Van Onsem
maintainer: [email protected]
copyright: 2020 Willem Van Onsem
category: utils
build-type: Simple
extra-source-files:
README.md
, CHANGELOG.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules:
Data.Char.BallotBox
, Data.Char.Block
, Data.Char.Block.Sextant
, Data.Char.Braille
, Data.Char.Brackets
, Data.Char.Card
, Data.Char.Chess
, Data.Char.Control
, Data.Char.Core
, Data.Char.Combining
, Data.Char.Currency
, Data.Char.Dice
, Data.Char.Domino
, Data.Char.Emoji
, Data.Char.Emoji.BloodType
, Data.Char.Emoji.Clock
, Data.Char.Emoji.Core
, Data.Char.Emoji.Flag
, Data.Char.Emoji.Gender
, Data.Char.Emoji.Hand
, Data.Char.Emoji.Moon
, Data.Char.Emoji.NoEvilMonkey
, Data.Char.Emoji.Science
, Data.Char.Emoji.SkinColor
, Data.Char.Emoji.Zodiac
, Data.Char.Enclosed
, Data.Char.Egyptian
, Data.Char.Frame
, Data.Char.Math
, Data.Char.Math.DoubleStruck
, Data.Char.Math.Fraktur
, Data.Char.Math.Monospace
, Data.Char.Math.SansSerif
, Data.Char.Math.SansSerif.Digit
, Data.Char.Math.SansSerif.Greek
, Data.Char.Math.SansSerif.Latin
, Data.Char.Math.Script
, Data.Char.Math.Serif
, Data.Char.Math.Serif.Digit
, Data.Char.Math.Serif.Greek
, Data.Char.Math.Serif.Latin
, Data.Char.Number.Duodecimal
, Data.Char.Number.Egyptian
, Data.Char.Number.Mayan
, Data.Char.Number.Roman
, Data.Char.Number.Segmented
, Data.Char.Number.Tally
, Data.Char.Number.VulgarFraction
, Data.Char.Private
, Data.Char.Private.Klingon
, Data.Char.Small
, Data.Char.Tag
other-modules:
Data.Char.Internal
, Data.Char.Math.Internal
build-depends:
base >= 4.7 && < 5
, containers >=0.4.2.1
, data-default-class >= 0.0.1
, deepseq >=1.4.3.0
, hashable >=1.2.7.0
, QuickCheck >=2.10.0 && <2.15
, text >=1.2.3.0 && <2.1
, time >=1.0
default-language: Haskell2010
default-extensions:
Safe
ghc-options: -Wall -Wcompat -Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
test-suite utricks
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules:
Data.Char.BallotBoxSpec
, Data.Char.BracketsSpec
, Data.Char.BrailleSpec
, Data.Char.Block.SextantSpec
, Data.Char.BlockSpec
, Data.Char.CardSpec
, Data.Char.ChessSpec
, Data.Char.CombiningSpec
, Data.Char.ControlSpec
, Data.Char.CoreTest
, Data.Char.CoreSpec
, Data.Char.CurrencySpec
, Data.Char.DiceSpec
, Data.Char.DominoSpec
, Data.Char.Emoji.BloodTypeSpec
, Data.Char.Emoji.ClockSpec
, Data.Char.Emoji.FlagSpec
, Data.Char.Emoji.GenderSpec
, Data.Char.Emoji.HandSpec
, Data.Char.Emoji.MoonSpec
, Data.Char.Emoji.NoEvilMonkeySpec
, Data.Char.Emoji.ScienceSpec
, Data.Char.Emoji.SkinColorSpec
, Data.Char.Emoji.ZodiacSpec
, Data.Char.FrameSpec
, Data.Char.MathSpec
, Data.Char.Number.MayanSpec
, Data.Char.Number.RomanSpec
, Data.Char.Number.TallySpec
, Data.Char.Private.KlingonSpec
, Data.Char.TagSpec
build-depends:
base
, unicode-tricks
, hashable >= 1.2.7.0
, hspec ==2.*
, QuickCheck >=2.10.0 && <2.15
, text >=1.1 && <2.1
, time >=1.0
build-tool-depends: hspec-discover:hspec-discover == 2.*
default-language: Haskell2010
default-extensions:
BlockArguments
, OverloadedStrings
ghc-options: -Wall -Wcompat -Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
source-repository head
type: git
location: https://github.com/hapytex/unicode-tricks