packages feed

abnf-0.3.2.0: abnf.cabal

-- Initial abnf.cabal generated by cabal init.  For further documentation, 
-- see http://haskell.org/cabal/users-guide/

name:                abnf
version:             0.3.2.0
synopsis:            Parse ABNF and generate parsers for the specified document
description:         You can use this library to parse an ABNF document and
                     generate a parser from that ABNF to read a document
                     described by the ABNF.
license:             BSD2
license-file:        LICENSE
author:              Xandaros
maintainer:          mz.bremerhaven@gmail.com
-- copyright:           
homepage:            https://github.com/Xandaros/abnf.git
category:            Text
build-type:          Simple
stability:           alpha
-- extra-source-files:  
cabal-version:       >=1.10

source-repository head
  type:                git
  location:            https://github.com/Xandaros/abnf.git

library
  exposed-modules:     Text.ABNF,
                       Text.ABNF.ABNF,
                       Text.ABNF.ABNF.Parser,
                       Text.ABNF.ABNF.Types,
                       Text.ABNF.ABNF.Canonicalizer,
                       Text.ABNF.Document,
                       Text.ABNF.Document.Parser,
                       Text.ABNF.Document.Types,
                       Text.ABNF.Document.Operations,
                       Text.ABNF.PrettyPrinter
  ghc-options:         -W
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.8 && <4.10,
                       text,
                       megaparsec,
                       attoparsec,
                       containers
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite test
  type:                exitcode-stdio-1.0
  main-is:             Main.hs
  other-modules:       ABNF,
                       Document,
                       Util
  hs-source-dirs:      test
  build-depends:       base >= 4.8 && <4.9,
                       text,
                       containers,
                       test-framework,
                       test-framework-hunit,
                       megaparsec,
                       attoparsec,
                       HUnit,
                       tasty,
                       tasty-hunit,
                       abnf
  default-language:    Haskell2010