about summary refs log tree commit diff
path: root/emoji-generic.cabal
blob: a9b8c9688c7f1a75758128fc05e7afa583241dc8 (plain) (blame)
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
54
55
56
57
58
59
60
61
cabal-version:       2.0
name:                emoji-generic
version:             0.2.0.0
synopsis:            A generic Emoji library
-- description:
-- bug-reports:
license:             LGPL-3.0-only
license-file:        LICENSE
author:              sternenseemann
maintainer:          git@lukasepple.de
-- copyright:
category:            Text
build-type:          Simple
extra-source-files:  README.md
                   , CHANGELOG.md
                   , data/*

library
  exposed-modules:     Text.Emoji
                     , Text.Emoji.DataFiles.EmojiTest
                     , Text.Emoji.Types
                     , Text.Emoji.String
                     , Text.Emoji.Text
  -- other-modules:
  -- other-extensions:
  build-depends:       base >=4.13 && <4.14
                     , text ^>=1.2.4.0
                     , attoparsec ^>=0.13.2.0
                     , file-embed
                     , utf8-light ^>=0.4.2
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall

test-suite test
  type:                exitcode-stdio-1.0
  main-is:             Main.hs
  hs-source-dirs:      test
  build-depends:       base >=4.13 && <4.14
                     , emoji-generic
                     , tasty ^>=1.2.3
                     , tasty-smallcheck ^>=0.8.1
                     , smallcheck ^>=1.1.5
                     , tasty-hunit ^>=0.10.0.2
                     , attoparsec ^>=0.13.2.0
                     , text ^>=1.2.4.0
  default-language:    Haskell2010

executable emoji-poster
  main-is:             Poster.hs
  hs-source-dirs:      tools
  build-depends:       base >=4.13 && <4.14
                     , emoji-generic
                     , conduit^>=1.3.2
                     , xml-conduit^>=1.9.0
                     , xml-types^>=0.3.8
                     , text^>=1.2.4
                     , attoparsec^>=0.13.2
                     , filepath^>=1.4.2
                     , directory^>=1.3.6
                     , optparse-applicative^>=0.15.0