packages feed

comark-parser-0.1.0: comark-parser.cabal

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

name:                comark-parser
version:             0.1.0
synopsis:            Parser for Commonmark (markdown)
description:         See <https://github.com/zudov/haskell-comark#readme README>
license:             BSD3
license-file:        LICENSE
author:              Konstantin Zudov
maintainer:          co@zudov.me
copyright:           (c) Konstantin Zudov, 2015, 2016, 2017
category:            Text
build-type:          Simple
cabal-version:       >= 1.10

library
  hs-source-dirs:
      src/
      extended/
  exposed-modules:
      Comark.Parser
      Comark.Parser.Options
      Comark.Parser.Inline
      Comark.Parser.Inline.EmphLink
      Comark.ParserCombinators
      Comark.ParserCombinators.Prim
  other-modules:
      Comark.Parser.Util
      Text.Html.Email.Validate
      Data.Char.Extended
      Data.Sequence.Extended
      Data.Text.Extended
      Paths_comark_parser
  other-extensions: OverloadedStrings TupleSections TupleSections ViewPatterns OverloadedStrings LambdaCase RecordWildCards
  build-depends:
      text
    , comark-syntax
    , base >=4.7 && <5.0
    , html5-entity >=0.2.0.1
    , control-bool
    , containers
    , transformers
  default-language: Haskell2010
  ghc-options: -Wall

test-suite test
  hs-source-dirs:
      tests/
  main-is: Main.hs
  other-modules:
      Blocks
      Inline
  type: exitcode-stdio-1.0
  ghc-options: -Wall
  build-depends:
      text
    , comark-syntax
    , base >=4.7
    , hspec
    , syb
    , QuickCheck
    , deepseq
    , containers
    , comark-parser
    , comark-testutils
    , cmark
  default-language: Haskell2010

benchmark bench
  type: exitcode-stdio-1.0
  hs-source-dirs:
      bench/
  main-is: Main.hs
  build-depends:
      text
    , comark-syntax
    , base >=4.7 && <5
    , criterion
    , comark-testutils
    , comark-parser
    , deepseq
    , file-embed
  default-language: Haskell2010
  ghc-options: -O2