-
Notifications
You must be signed in to change notification settings - Fork 1
/
qm-interpolated-string.cabal
71 lines (64 loc) · 2.41 KB
/
qm-interpolated-string.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
name: qm-interpolated-string
version: 0.3.1.0
synopsis: Implementation of interpolated multiline strings
description: Implementation of interpolated multiline strings
that ignores indentation and trailing whitespaces
homepage: https://github.com/unclechu/haskell-qm-interpolated-string
license: PublicDomain
license-file: LICENSE
author: Viacheslav Lotsmanov
copyright: Public Domain
maintainer: [email protected]
category: Data
build-type: Simple
extra-source-files: README.md CHANGELOG.md
cabal-version: >=1.10
tested-with: GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.6.5
, GHC == 8.8.3
, GHC == 8.10.3
, GHC == 9.0.2
, GHC == 9.2.3
source-repository head
type: git
location: git://github.com/unclechu/haskell-qm-interpolated-string.git
library
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: Text.InterpolatedString.QM
, Text.InterpolatedString.QM.ShowQ.Class
other-modules: Text.InterpolatedString.QM.Internal.Parsers
, Text.InterpolatedString.QM.Internal.Parsers.TH
, Text.InterpolatedString.QM.Internal.Parsers.Types
, Text.InterpolatedString.QM.Internal.Parsers.Helpers
build-depends: base ==4.*
, template-haskell >=2.5 && <3
, haskell-src-meta >=0.3 && <0.9
, bytestring >=0.10 && <0.12
, text >=1.0 && <3
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
if impl(ghc >= 8.0)
ghc-options: -Wall -fno-warn-type-defaults -Wno-tabs
else
ghc-options: -Wall -fno-warn-type-defaults
hs-source-dirs: test
main-is: Spec.hs
other-modules: QM.Spec
, QN.Spec
, QMB.Spec
, QNB.Spec
, QMS.Spec
, QNS.Spec
, LineBreaks.CRLF.QM.Spec
, LineBreaks.CRLF.QN.Spec
, LineBreaks.CRLF.QMB.Spec
, LineBreaks.CRLF.QNB.Spec
, LineBreaks.CRLF.QMS.Spec
, LineBreaks.CRLF.QNS.Spec
build-depends: base ==4.*
, hspec ==2.*
, qm-interpolated-string
default-language: Haskell2010