-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.yaml
39 lines (35 loc) · 934 Bytes
/
package.yaml
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
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
git: git://github.com/erochest/text-regex-replace.git
dependencies:
- text >=1.2
- text-icu >=0.7 && <0.9
library:
source-dirs: src
exposed-modules:
- Data.Text.ICU.Replace
dependencies:
- base >=4.7 && <5
- attoparsec >=0.12 && <0.15
tests:
text-regex-replace-specs:
main: Specs.hs
source-dirs: specs
ghc-options:
- -threaded
- -rtsopts
dependencies:
- base
- text-regex-replace
- QuickCheck
- smallcheck
- hspec