-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtext-regex-replace.cabal
57 lines (52 loc) · 1.5 KB
/
text-regex-replace.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.0.
--
-- see: https://github.com/sol/hpack
name: text-regex-replace
version: 0.1.1.5
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
author: Eric Rochester
maintainer: [email protected]
license: Apache-2.0
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: git://github.com/erochest/text-regex-replace.git
library
exposed-modules:
Data.Text.ICU.Replace
other-modules:
Paths_text_regex_replace
hs-source-dirs:
src
build-depends:
attoparsec >=0.12 && <0.15
, base >=4.7 && <5
, text >=1.2
, text-icu >=0.7 && <0.9
default-language: Haskell2010
test-suite text-regex-replace-specs
type: exitcode-stdio-1.0
main-is: Specs.hs
other-modules:
Data.Text.ICU.ReplaceSpec
Paths_text_regex_replace
hs-source-dirs:
specs
ghc-options: -threaded -rtsopts
build-depends:
QuickCheck
, base
, hspec
, smallcheck
, text >=1.2
, text-icu >=0.7 && <0.9
, text-regex-replace
default-language: Haskell2010