-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathth-printf.cabal
90 lines (84 loc) · 2 KB
/
th-printf.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.3.
--
-- see: https://github.com/sol/hpack
--
-- hash: 7e86d199e67bceb4c613b25421b603adc41dcb4508283966e741b036d0075e3d
name: th-printf
version: 0.8
synopsis: Quasiquoters for printf
description: Quasiquoters for string and text printf
category: Text
homepage: https://github.com/pikajude/th-printf#readme
bug-reports: https://github.com/pikajude/th-printf/issues
author: Jude Taylor
maintainer: [email protected]
license: MIT
license-file: LICENSE
tested-with:
GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.7, GHC == 9.4.5, GHC == 9.6.2
build-type: Simple
extra-source-files:
CHANGELOG.md
source-repository head
type: git
location: https://github.com/pikajude/th-printf
flag werror
description: Build with -Werror
manual: True
default: False
library
exposed-modules:
Language.Haskell.Printf
Language.Haskell.Printf.Lib
other-modules:
Buf
Language.Haskell.Printf.Geometry
Language.Haskell.Printf.Printers
Language.Haskell.PrintfArg
NumUtils
StrUtils
Parser
Parser.Types
Paths_th_printf
hs-source-dirs:
src
parser
ghc-options: -Wall
build-depends:
base >=4.12 && <5
, charset
, containers
, dlist
, integer-logarithms
, microlens-platform
, mtl
, parsec
, semigroups
, template-haskell
, text
, th-lift
, transformers
default-language: Haskell2010
if flag(werror)
ghc-options: -Werror
test-suite format
type: exitcode-stdio-1.0
main-is: format.hs
other-modules:
GeneratedSpec
Paths_th_printf
hs-source-dirs:
tests/printf
ghc-options: -Wall -fno-warn-type-defaults
build-depends:
HUnit
, QuickCheck
, base >=4.12 && <5
, hspec
, template-haskell
, text
, th-printf
default-language: Haskell2010
if flag(werror)
ghc-options: -Werror