packages feed

text-regex-replace-0.1.1.2: text-regex-replace.cabal

name: text-regex-replace
version: 0.1.1.2
cabal-version: >=1.10
build-type: Simple
license: Apache-2.0
license-file: LICENSE
maintainer: erochest@gmail.com
synopsis: Easy replacement when using text-icu regexes.
description:
    This provides a convenient API for doing replacements off of a regular
    expression, similar to what regex libraries in other languages provide.
    .
    At this point, this hasn't been used enough to have any idea of its
    performance. Caveat emptor.
category: Data, Text
author: Eric Rochester

source-repository head
    type: git
    location: git://github.com/erochest/text-regex-replace.git

source-repository this
    type: git
    location: git://github.com/erochest/text-regex-replace.git
    tag: 0.1.0.1

library
    exposed-modules:
        Data.Text.ICU.Replace
    build-depends:
        base >=4.7 && <5,
        attoparsec >=0.12 && <0.14,
        text ==1.2.*,
        text-icu ==0.7.*
    default-language: Haskell2010
    hs-source-dirs: src

test-suite  text-regex-replace-specs
    type: exitcode-stdio-1.0
    main-is: Specs.hs
    build-depends:
        base >=4.10.1.0,
        text-regex-replace -any,
        QuickCheck >=2.10.1,
        smallcheck >=1.1.3.1,
        hspec >=2.4.8,
        text ==1.2.*,
        text-icu ==0.7.*
    default-language: Haskell2010
    hs-source-dirs: specs
    other-modules:
        Data.Text.ICU.ReplaceSpec
    ghc-options: -threaded -rtsopts