-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprintcess.cabal
82 lines (78 loc) · 1.69 KB
/
printcess.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
name:
printcess
version:
0.1.0.3
synopsis:
Pretty printing with indentation, mixfix operators, and automatic line breaks.
description:
Pretty printing library supporting indentation, parenthesis-elision according
to fixity and associativity, and automatic line breaks after text width
exceedance.
homepage:
https://github.com/m0rphism/printcess/
bug-reports:
https://github.com/m0rphism/printcess/issues
license:
BSD3
license-file:
LICENSE
author:
Hannes Saffrich
maintainer:
Hannes Saffrich <[email protected]>
copyright:
2016 Hannes Saffrich
category:
Pretty Printer
build-type:
Custom
cabal-version:
>=1.10
stability:
Beta
tested-with:
GHC == 8.0.1
library
hs-source-dirs:
src
default-language:
Haskell2010
build-depends:
base >= 4.8 && < 5,
containers >= 0.5.6 && < 0.6,
mtl >= 2.2 && < 2.3,
transformers >= 0.4.2 && < 0.6,
lens >= 4.10 && < 4.16
if impl(ghc<8)
build-depends:
semigroups >= 0.18 && < 0.19
ghc-options:
-Wall -fno-warn-partial-type-signatures
exposed-modules:
Printcess.PrettyPrinting
other-modules:
Printcess.Config,
Printcess.Core,
Printcess.Combinators
source-repository head
type:
git
location:
https://github.com/m0rphism/printcess.git
test-suite spec
type:
exitcode-stdio-1.0
hs-source-dirs:
test
main-is:
Spec.hs
build-depends:
base >= 4.8 && < 5,
containers >= 0.5.7 && < 0.6,
mtl >= 2.2 && < 2.3,
transformers >= 0.5 && < 0.6,
lens >= 4.10 && < 4.16,
HUnit >= 1.3 && < 1.6,
QuickCheck >= 2.8 && < 2.10,
hspec >= 2.2,
printcess