File: string-qq.cabal

package info (click to toggle)
haskell-string-qq 0.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 60 kB
  • sloc: haskell: 53; makefile: 3
file content (39 lines) | stat: -rw-r--r-- 1,155 bytes parent folder | download
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
Name:          string-qq
Version:       0.0.6
License:       PublicDomain
License-file:  LICENSE
Category:      Data
Author:        Audrey Tang
Copyright:     Audrey Tang
Maintainer:    Audrey Tang <audreyt@audreyt.org>
Stability:     unstable
Cabal-Version: >= 1.10
Build-Type:    Simple
Synopsis:      QuasiQuoter for non-interpolated strings, texts and bytestrings.
Description:   QuasiQuoter for non-interpolated strings, texts and bytestrings, useful for writing multi-line IsString literals.
Tested-With:
    GHC==6.10.1
    GHC==7.0.2
    GHC==8.2.2
    GHC==8.6.5
    GHC==9.4.8
    GHC==9.6.3
    GHC==9.8.1

Source-Repository head
    type: git
    location: https://github.com/audreyt/string-qq.git

library
    default-extensions:      TemplateHaskell
    build-depends:   base > 3 && < 6, template-haskell >= 2 && < 3
    hs-source-dirs:  src
    exposed-modules: Data.String.QQ
    default-language: Haskell2010

test-suite string-qq-test
    type:           exitcode-stdio-1.0
    hs-source-dirs: tests
    main-is:        Test.hs
    build-depends:  base, string-qq, HUnit >=1.6 && <1.7, text >=1.2 && <3
    default-language: Haskell2010