-
Notifications
You must be signed in to change notification settings - Fork 14
/
text-display.cabal
110 lines (95 loc) · 2.69 KB
/
text-display.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
cabal-version: 3.0
name: text-display
version: 1.0.0.0
category: Text
synopsis: A typeclass for user-facing output
description:
The 'Display' typeclass provides a solution for user-facing output that does not have to abide by the rules of the Show typeclass.
homepage:
https://hackage.haskell.org/package/text-display-0.0.5.0/docs/doc/book/Introduction.html
bug-reports: https://github.com/haskell-text/text-display/issues
author: Hécate Moonlight
maintainer: Hécate Moonlight
license: MIT
build-type: Simple
extra-source-files:
LICENSE
README.md
extra-doc-files:
./doc/book/*.css
./doc/book/*.html
./doc/book/*.js
./doc/book/css/*.css
./doc/book/favicon.png
./doc/book/favicon.svg
./doc/book/FontAwesome/css/font-awesome.css
./doc/book/FontAwesome/fonts/fontawesome-webfont.woff2
./doc/book/fonts/*.css
./doc/book/fonts/*.woff2
./doc/book/searchindex.json
CHANGELOG.md
tested-with:
GHC ==9.2.8
|| ==9.4.8
|| ==9.6.6
|| ==9.8.2
|| ==9.10.1
flag book
description: Enable the generation of the book
default: False
manual: True
source-repository head
type: git
location: https://github.com/haskell-text/text-display
common common-extensions
default-language: Haskell2010
common common-ghc-options
ghc-options:
-Wall -Wcompat -Widentities -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
-fhide-source-paths -Wno-unused-do-bind -funbox-strict-fields
-Wunused-packages
common common-rts-options
ghc-options: -rtsopts -threaded -with-rtsopts=-N
library
import: common-extensions
import: common-ghc-options
hs-source-dirs: src
exposed-modules:
Data.Text.Display
Data.Text.Display.Core
Data.Text.Display.Generic
build-depends:
, base >=4.12 && <5.0
, bytestring >=0.10 && <0.13
, text >=2.0.2 && <2.2
, text-builder-linear >=0.1.3 && <0.2
executable book
import: common-extensions
import: common-ghc-options
import: common-rts-options
main-is: Main.hs
hs-source-dirs: doc/src
if !flag(book)
buildable: False
build-depends:
, base
, directory
, literatex
, shake
test-suite text-display-test
import: common-extensions
import: common-ghc-options
import: common-rts-options
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
build-depends:
, base
, quickcheck-text
, tasty
, tasty-hunit
, tasty-quickcheck
, text
, text-builder-linear
, text-display