-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathemojis.cabal
50 lines (47 loc) · 1.89 KB
/
emojis.cabal
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
name: emojis
version: 0.1.4.1
synopsis: Conversion between emoji characters and their names.
description: This package provides functions for converting
emoji names to emoji characters and vice versa.
.
How does it differ from the @emoji@ package?
.
- It supports a fuller range of emojis, including all those
supported by GitHub
- It supports lookup of emoji aliases from emoji
- It uses Text rather than String
- It has a lighter dependency footprint: in particular, it
does not require aeson
- It does not require TemplateHaskell
homepage: https://github.com/jgm/emojis#readme
license: BSD3
license-file: LICENSE
author: John MacFarlane
maintainer: [email protected]
copyright: 2019 John MacFarlane
category: Text
build-type: Simple
extra-source-files: emoji.json, src/Text/emojis.inc, README.md, changelog.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Text.Emoji
other-modules: Trie
build-depends: base >= 4.13 && < 5,
text,
containers
default-language: Haskell2010
ghc-options: -Wall -fno-warn-unused-do-bind
test-suite emojis-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: test.hs
build-depends: base >= 4.9 && < 5,
emojis,
text,
HUnit
default-language: Haskell2010
ghc-options: -Wall -fno-warn-unused-do-bind
source-repository head
type: git
location: https://github.com/jgm/emojis