blob: c5dc7d5606f0bcb1b4acc6a800b14b4ba247a270 (
plain)
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
|
author: tv
build-type: Simple
cabal-version: >= 1.8
license: MIT
name: blessings
version: 2.5.1
library
build-depends:
base,
bytestring,
extra,
text,
wcwidth
exposed-modules:
Blessings,
Blessings.ByteString,
Blessings.ByteString.Lazy,
Blessings.Internal,
Blessings.String,
Blessings.String.WCWidth
Blessings.Text,
Blessings.Text.WCWidth
ghc-options: -O2 -Wall
hs-source-dirs: src
test-suite test-blessings
build-depends:
base,
blessings,
hspec,
QuickCheck
ghc-options: -Wall
hs-source-dirs: test
main-is: Spec.hs
type: exitcode-stdio-1.0
source-repository head
location: https://cgit.krebsco.de/blessings
type: git
|