packages feed

constaparser-0.1.0.0: constaparser.cabal

name:                constaparser
version:             0.1.0.0
synopsis:            Parse ByteStrings of a constant length. 
description:         Parse constant-length ByteStrings, which allows
                     for some performance optimisations.
                     You can also convert from a 'Constaparser' to a
                     'Parser' from Attoparsec.
homepage:            https://github.com/chessai/constaparser
license:             BSD3
license-file:        LICENSE
author:              Andrew Martin
maintainer:          chessai1996@gmail.com
copyright:           2018 Andrew Martin           
category:            Data
build-type:          Simple
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10

library
  exposed-modules:     Data.Constaparser
  other-modules:       Data.Constaparser.Internal 
  build-depends:       base >=4.10 && <4.11, attoparsec, bytestring >=0.10 && <0.11, vector
  default-language:    Haskell2010

source-repository head
  type: git
  location: https://github.com/chessai/constaparser