File: prettyprinter-interp.cabal

package info (click to toggle)
haskell-prettyprinter-interp 0.2.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 80 kB
  • sloc: haskell: 70; makefile: 6
file content (53 lines) | stat: -rw-r--r-- 2,034 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
cabal-version:      2.4
name:               prettyprinter-interp
version:            0.2.0.0
x-revision: 4
synopsis:           Efficient interpolation for Prettyprinter
description:
  This package provides efficient interpolation
  of @[string-interpolate](https://hackage.haskell.org/package/string-interpolate)@
  quasi quoters when used
  with @[prettyprinter](https://hackage.haskell.org/package/prettyprinter)@.
homepage:           https://github.com/DigitalBrains1/prettyprinter-interp
bug-reports:        https://github.com/DigitalBrains1/prettyprinter-interp/issues
license:            BSD-2-Clause
license-file:       LICENSE
author:             Peter Lebbing
maintainer:         peter@digitalbrains.com
copyright:          (C) 2022-2023, Peter Lebbing
category:           Data, Text
extra-source-files: CHANGELOG.md

source-repository head
  type:     git
  location: https://github.com/DigitalBrains1/prettyprinter-interp
source-repository this
  type:     git
  location: https://github.com/DigitalBrains1/prettyprinter-interp
  tag:      v0.2.0.0+r4

library
  exposed-modules:    Prettyprinter.Interpolate

  build-depends:      base                      >=4.12      && < 4.21,
                      prettyprinter             >=1.2       && < 1.8,
                      string-interpolate        ^>=0.3.1.0,
                      template-haskell,
                      text                      >=1.2.3.0   && < 2.2,
  hs-source-dirs:     src
  default-language:   Haskell2010
  ghc-options:        -Wall -Wcompat

test-suite unittests
  default-language:   Haskell2010
  type:               exitcode-stdio-1.0
  hs-source-dirs:     test
  main-is:            unittests.hs
  build-depends:      base,
                      prettyprinter,
                      prettyprinter-interp,
                      string-interpolate,
                      tasty                     >= 1.2.2    && < 1.6,
                      tasty-hunit               ^>=0.10.0.2,
                      text,
  ghc-options:        -Wall -Wcompat