packages feed

text-regex-replace-0.1.0.1: text-regex-replace.cabal

-- Initial text-regex-replace.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                text-regex-replace
version:             0.1.0.1
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.
license:             Apache-2.0
license-file:        LICENSE
author:              Eric Rochester
maintainer:          erochest@gmail.com
-- copyright:           
category:            Data, Text
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

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

test-suite text-regex-replace-specs
  type:                exitcode-stdio-1.0
  ghc-options:         -threaded -rtsopts
  hs-source-dirs:      specs
  main-is:             Specs.hs
  build-depends:         base
                       , text-regex-replace
                       , QuickCheck
                       , smallcheck
                       , hspec
                       , text       >= 1.2  && <1.3
                       , text-icu   >= 0.7  && <0.8
  default-language:    Haskell2010


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

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