summaryrefslogtreecommitdiffstats
path: root/blessings.cabal
blob: 4b1570ae47704d0ac1167c0738df7d227f7d192d (plain)
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
author: tv
build-type: Simple
cabal-version: >= 1.8
license: MIT
name: blessings
version: 2.1.0

library
  build-depends:
    base,
    text
  exposed-modules:
    Blessings,
    Blessings.Internal,
    Blessings.String,
    Blessings.Text
  ghc-options: -O2 -Wall
  hs-source-dirs: src

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

source-repository head
  location: https://cgit.krebsco.de/blessings
  type: git