packages feed

tagstew-0: tagstew.cabal

cabal-version:       2.4
-- Initial package description 'tagstew.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/

name:                tagstew
version:             0
synopsis:            Black magic tagsoup
description:         Fast alternative HTML decoder for tagsoup
bug-reports:         https://github.com/fumieval/tagstew
license:             BSD-3-Clause
license-file:        LICENSE
author:              Fumiaki Kinoshita
maintainer:          fumiexcel@gmail.com
copyright:           Copyright (c) 2020 Fumiaki Kinoshita
category:            Text
extra-source-files:  CHANGELOG.md, README.md

library
  exposed-modules:     Text.HTML.TagStew, Text.HTML.TagStew.Entity
  ghc-options: -Wall -O2
  build-depends:       base == 4.*, bytestring, compact, unordered-containers
    , tagsoup, text
  default-language:    Haskell2010

executable tagstew
  main-is:             Main.hs
  -- other-modules:
  -- other-extensions:
  build-depends:       base == 4.*, bytestring
    , tagstew
    , tagsoup
    , utf8-string
    , unicode-show
  hs-source-dirs: app
  default-language:    Haskell2010

source-repository head
  type: git
  location: https://github.com/fumieval/tagstew