packages feed

emoji-0.1.0.2: emoji.cabal

name:                emoji
version:             0.1.0.2
synopsis:            emoji utility
description:         emoji utility
homepage:            https://github.com/nakaji-dayo/hs-emoji#readme
license:             BSD3
license-file:        LICENSE
author:              Daishi Nakajima
maintainer:          nakaji.dayo@gmail.com
copyright:           2018 Daishi Nakajima
category:            Unicode
build-type:          Simple
extra-source-files:  README.md
                     resource/emoji.json
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.Emoji
                       Data.Emoji.Internal
  build-depends:       base >= 4.7 && < 5
                     , text
                     , bytestring
                     , aeson
                     , unordered-containers
                     , template-haskell >= 2.11
  default-language:    Haskell2010

executable emoji-example
  hs-source-dirs:      examples
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-extensions:  OverloadedStrings
  build-depends:       base
                     , emoji
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/githubuser/hs-emoji