File: stringbuilder.cabal

package info (click to toggle)
haskell-stringbuilder 0.5.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 60 kB
  • sloc: haskell: 57; makefile: 2
file content (41 lines) | stat: -rw-r--r-- 903 bytes parent folder | download | duplicates (4)
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
name:             stringbuilder
version:          0.5.1
synopsis:         A writer monad for multi-line string literals
description:      <https://github.com/sol/stringbuilder#readme>
category:         Testing
license:          MIT
license-file:     LICENSE
copyright:        (c) 2011-2018 Simon Hengel
author:           Simon Hengel <sol@typeful.net>
maintainer:       Simon Hengel <sol@typeful.net>
build-type:       Simple
cabal-version:    >= 1.8

source-repository head
  type: git
  location: https://github.com/sol/stringbuilder

library
  ghc-options:
      -Wall
  hs-source-dirs:
      src
  build-depends:
      base == 4.*
  exposed-modules:
      Data.String.Builder

test-suite spec
  type:
      exitcode-stdio-1.0
  main-is:
      Spec.hs
  ghc-options:
      -Wall
  hs-source-dirs:
      test
  build-depends:
      base
    , stringbuilder
    , hspec         >= 1.3
    , QuickCheck