regex-do-2.6: regex-do.cabal
name: regex-do
version: 2.6
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.Option
Text.Regex.Do.Pcre.Utf8.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.Ascii.MatchHint
Text.Regex.Do.ReplaceOpen
Text.Regex.Do.Type.Extract
Text.Regex.Do.Type.Regex
Text.Regex.Do.Type.MatchHint
Text.Regex.Do.Pcre.Ascii.Match
Text.Regex.Do.Pcre.Ascii.Replace
Text.Regex.Do.Pcre.Utf8.Match
Text.Regex.Do.Pcre.Utf8.MatchHint
Text.Regex.Do.Pcre.Matchf
other-modules:
Text.Regex.Do.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
TypeFamilies
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
TypeFamilies
main-is: Main.hs
other-modules:
TestRegex.TestFormat
TestRegex.TestPcre
TestRegex.TestReplace
TestRegex.TestSplit
TestRegex.TestTrim
TestRegex.TestReplaceOpen
TestRegex.TestReplaceUtf
build-depends: base <= 5.0,
hspec,
QuickCheck,
regex-base,
regex-pcre,
stringsearch,
bytestring,
array,
text,
regex-do