packages feed

text-regex-replace-0.1.1.5: text-regex-replace.cabal

cabal-version: 1.12
name:          text-regex-replace
version:       0.1.1.5
license:       Apache-2.0
license-file:  LICENSE
maintainer:    erochest@gmail.com
author:        Eric Rochester
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
build-type:    Simple

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

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

test-suite text-regex-replace-specs
    type:             exitcode-stdio-1.0
    main-is:          Specs.hs
    hs-source-dirs:   specs
    other-modules:
        Data.Text.ICU.ReplaceSpec
        Paths_text_regex_replace

    default-language: Haskell2010
    ghc-options:      -threaded -rtsopts
    build-depends:
        QuickCheck >=2.14.2,
        base >=4.14.3.0,
        hspec >=2.7.10,
        smallcheck >=1.2.1,
        text >=1.2,
        text-icu >=0.7 && <0.9,
        text-regex-replace -any