name: regex-do version: 1.4 synopsis: PCRE wrapper description: format, search, replace (String | ByteString) with PCRE regex. Utf8-safe author: Imants Cekusins maintainer: Imants Cekusins category: Regex, Search, String license: PublicDomain license-file: PublicDomain cabal-version: >=1.10 build-type: Simple homepage: https://github.com/ciez/regex-do library exposed-modules: Text.Regex.Do.Trim Text.Regex.Do.Pcre.Match Text.Regex.Do.Pcre.Option Text.Regex.Do.Pcre.Replace Text.Regex.Do.Pcre.Result Text.Regex.Do.Split Text.Regex.Do.Format Text.Regex.Do.TypeDo Text.Regex.Do.TypeRegex Text.Regex.Do.Convert other-modules: ghc-options: -fwarn-unused-imports build-depends: base <= 5.0, regex-base, regex-pcre, stringsearch, bytestring, array, text hs-source-dirs: src default-language: Haskell2010 default-extensions: FlexibleInstances MultiParamTypeClasses BangPatterns InstanceSigs OverloadedStrings FlexibleContexts ConstraintKinds ScopedTypeVariables DeriveFunctor test-suite spec default-language:Haskell2010 type: exitcode-stdio-1.0 ghc-options: -fwarn-unused-imports hs-source-dirs: test, src default-extensions: FlexibleInstances MultiParamTypeClasses BangPatterns InstanceSigs OverloadedStrings FlexibleContexts ConstraintKinds ScopedTypeVariables DeriveFunctor main-is: Main.hs other-modules: TestRegex.TestFormat TestRegex.TestPcre TestRegex.TestReplace TestRegex.TestSplit TestRegex.TestTrim build-depends: base <= 5.0, hspec, QuickCheck, regex-base, regex-pcre, stringsearch, bytestring, array, text, regex-do