packages feed

bitset-word8-0.1.0.0: bitset-word8.cabal

name:                bitset-word8
version:             0.1.0.0
synopsis:            Space efficient set of Word8 and some pre-canned sets useful for parsing HTTP
description:         This packaged is intended to provide O(1) membership test on any subset of ASCII
                     and Latin-1 character set in order to write efficient HTTP related parser.
homepage:            https://github.com/nshimaza/bitset-word8#readme
license:             MIT
license-file:        LICENSE
author:              Naoto Shimazaki
maintainer:          Naoto.Shimazaki@gmail.com
copyright:           Copyright: (c) 2017 Naoto Shimazaki
category:            Data
build-type:          Simple
extra-source-files:  CHANGELOG.md
                   , README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.BitSetWord8
                     , Data.BitSetWord8.CharSets
                     , Data.BitSetWord8.Internal
  build-depends:       base >= 4.7 && < 5
                     , bytestring
                     , containers
                     , template-haskell
                     , th-lift-instances
  default-language:    Haskell2010

test-suite bitset-word8-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  other-modules:       Data.BitSetWord8Spec
  build-depends:       base
                     , hspec
                     , QuickCheck
                     , bitset-word8
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/nshimaza/bitset-word8