name: qm-interpolated-string
version: 0.2.0.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: Viacheslav Lotsmanov
maintainer: Viacheslav Lotsmanov <lotsmanov89@gmail.com>
category: Data
build-type: Simple
extra-source-files: README.md CHANGELOG.md
cabal-version: >=1.8
tested-with: GHC == 7.6.3
, GHC == 7.8.4
, GHC == 7.10.1
, GHC == 7.10.2
, GHC == 8.0.2
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.Internal.Parsers
, Text.InterpolatedString.QM.Internal.Parsers.TH
, Text.InterpolatedString.QM.Internal.Parsers.Types
, Text.InterpolatedString.QM.Internal.Parsers.Helpers
, Text.InterpolatedString.QM.ShowQ.Class
build-depends: base ==4.*
, template-haskell >=2.5 && <3
, haskell-src-meta >=0.3 && <0.9
, bytestring ==0.10.*
, text ==1.*
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