packages feed

parsec-numeric-0.1.0.0: parsec-numeric.cabal

name:          parsec-numeric
version:       0.1.0.0
synopsis:      Parsec combinators for parsing Haskell numeric types.
description:   Please see README.md
homepage:      https://github.com/AndrewRademacher/parsec-numeric
license:       OtherLicense
license-file:  LICENSE
author:        Andrew Rademacher
maintainer:    andrewrademacher@gmail.com
copyright:     2017 Andrew Rademacher
category:      Parsing
build-type:    Simple
cabal-version: >=1.10

library
  hs-source-dirs:     src
  default-language:   Haskell2010

  exposed-modules:    Text.ParserCombinators.Parsec.Numeric

  build-depends:      base >= 2 && < 6

                    , parsec

test-suite parsec-numeric-test
  type:               exitcode-stdio-1.0
  main-is:            Test.hs
  hs-source-dirs:     test
  default-language:   Haskell2010

  other-modules:      Test.Text.ParserCombinators.Parsec.Numeric

  build-depends:      base

                    , bytestring
                    , parsec
                    , parsec-numeric
                    , text

                    , tasty
                    , tasty-hunit
                    , tasty-quickcheck
                    , tasty-th