name: regex-do version: 2.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 extra-source-files: changelog.md cabal-version: >=1.10 build-type: Simple homepage: https://github.com/ciez/regex-do source-repository head type: git location: https://github.com/ciez/regex-do.git 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.Split Text.Regex.Do.Format Text.Regex.Do.Type.Do Text.Regex.Do.Type.Reexport Text.Regex.Do.Convert Text.Regex.Do.Pad Text.Regex.Do.Pcre.MatchHint Text.Regex.Do.Pcre.ReplaceOpen Text.Regex.Do.Type.Extract Text.Regex.Do.Type.Regex_ Text.Regex.Do.Type.MatchHint other-modules: Text.Regex.Do.Pcre.Matchf Text.Regex.Do.Pcre.Result 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 TestRegex.TestReplaceOpen build-depends: base <= 5.0, hspec, QuickCheck, regex-base, regex-pcre, stringsearch, bytestring, array, text, regex-do