packages feed

simple-parser-0.2.2: simple-parser.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 05dbeeb0f7613ae6d38c54b0654472b0b1d48dc401b57a41cae0dc16554fb065

name:           simple-parser
version:        0.2.2
synopsis:       Simple parser combinators
description:    Please see the README on GitHub at <https://github.com/ejconlon/simple-parser#readme>
category:       Parsing
homepage:       https://github.com/ejconlon/simple-parser#readme
bug-reports:    https://github.com/ejconlon/simple-parser/issues
author:         Eric Conlon
maintainer:     ejconlon@gmail.com
copyright:      (c) 2020 Eric Conlon
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md

source-repository head
  type: git
  location: https://github.com/ejconlon/simple-parser

library
  exposed-modules:
      SimpleParser
      SimpleParser.Examples.Json
      SimpleParser.Input
      SimpleParser.Parser
      SimpleParser.Result
      SimpleParser.Stream
  other-modules:
      Paths_simple_parser
  hs-source-dirs:
      src
  default-extensions: BangPatterns DeriveFunctor DeriveFoldable DeriveTraversable DerivingStrategies FlexibleContexts FlexibleInstances FunctionalDependencies GeneralizedNewtypeDeriving KindSignatures MultiParamTypeClasses TypeFamilies
  ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints -fno-warn-unused-top-binds
  build-depends:
      base >=4.12 && <5
    , containers >=0.6 && <0.7
    , list-t >=1.0 && <1.1
    , mmorph >=1.1 && <1.2
    , mtl >=2.2 && <2.3
    , text >=1.2 && <1.3
  default-language: Haskell2010

test-suite simple-parser-test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  other-modules:
      Paths_simple_parser
  hs-source-dirs:
      test
  default-extensions: BangPatterns DeriveFunctor DeriveFoldable DeriveTraversable DerivingStrategies FlexibleContexts FlexibleInstances FunctionalDependencies GeneralizedNewtypeDeriving KindSignatures MultiParamTypeClasses TypeFamilies
  ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints -fno-warn-unused-top-binds -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.12 && <5
    , containers >=0.6 && <0.7
    , list-t >=1.0 && <1.1
    , mmorph >=1.1 && <1.2
    , mtl >=2.2 && <2.3
    , simple-parser
    , tasty
    , tasty-hunit
    , tasty-th
    , text >=1.2 && <1.3
  default-language: Haskell2010