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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
Name: weighted-regexp
Version: 0.3.1.1
Cabal-Version: >= 1.6
Synopsis: Weighted Regular Expression Matcher
Description:
Haskell implementation of a weighted regular expression
matcher with linear worst-case time and space bounds.
Category: Text, Parsing
License: BSD3
License-File: LICENSE
Author: Thomas Wilke, Frank Huch, Sebastian Fischer
Maintainer: Sebastian Fischer
Bug-Reports: http://github.com/sebfisch/haskell-regexp/issues
Homepage: http://sebfisch.github.com/haskell-regexp
Build-Type: Simple
Stability: experimental
Extra-Source-Files: README.markdown CHANGES.markdown
Library
Build-Tools: happy >= 1.17
Build-Depends: base >= 3 && < 5,
array >= 0.1 && < 0.5
HS-Source-Dirs: src
Exposed-Modules: Text.RegExp,
Text.RegExp.Matching.Leftmost,
Text.RegExp.Matching.Longest,
Text.RegExp.Matching.LeftLong,
Text.RegExp.Internal,
Data.Semiring,
Data.Semiring.Properties
Other-Modules: Text.RegExp.Data,
Text.RegExp.Parser,
Text.RegExp.Matching,
Text.RegExp.Matching.Leftmost.Type,
Text.RegExp.Matching.Longest.Type,
Text.RegExp.Matching.LeftLong.Type
Extensions: RankNTypes,
BangPatterns,
FlexibleContexts,
FlexibleInstances,
MultiParamTypeClasses,
NoMonomorphismRestriction,
GeneralizedNewtypeDeriving
Flag QuickCheck
Description: Build executable to run QuickCheck tests
Default: False
Executable quickcheck-re
Main-Is: quickcheck.lhs
If flag(QuickCheck)
Build-Depends: base >= 3 && < 5, QuickCheck < 2
Else
Buildable: False
HS-Source-Dirs: src
Other-Modules: Text.RegExp,
Text.RegExp.Matching.Leftmost,
Text.RegExp.Matching.Longest,
Text.RegExp.Matching.LeftLong,
Data.Semiring,
Data.Semiring.Properties
Text.RegExp.Internal,
Text.RegExp.Data,
Text.RegExp.Parser,
Text.RegExp.Matching,
Text.RegExp.Matching.Leftmost.Type,
Text.RegExp.Matching.Longest.Type,
Text.RegExp.Matching.LeftLong.Type
Extensions: RankNTypes,
BangPatterns
FlexibleContexts,
FlexibleInstances,
MultiParamTypeClasses,
NoMonomorphismRestriction,
GeneralizedNewtypeDeriving,
OverloadedStrings,
ScopedTypeVariables
GHC-Options: -fhpc -fno-warn-missing-methods -fno-warn-orphans
Flag Criterion
Description: Build executable to run Criterion benchmarks
Default: False
Executable criterion-re
Main-Is: criterion.lhs
If flag(Criterion)
Build-Depends: base >= 3 && < 5, criterion >= 0.5 && < 0.6
Else
Buildable: False
HS-Source-Dirs: src
Other-Modules: Text.RegExp,
Text.RegExp.Matching.Leftmost,
Text.RegExp.Matching.Longest,
Text.RegExp.Matching.LeftLong,
Data.Semiring,
Text.RegExp.Internal,
Text.RegExp.Data,
Text.RegExp.Parser,
Text.RegExp.Matching,
Text.RegExp.Matching.Leftmost.Type,
Text.RegExp.Matching.Longest.Type,
Text.RegExp.Matching.LeftLong.Type
Extensions: RankNTypes,
BangPatterns,
FlexibleContexts,
FlexibleInstances,
MultiParamTypeClasses,
NoMonomorphismRestriction,
GeneralizedNewtypeDeriving,
OverloadedStrings
GHC-Options:
Source-Repository head
type: git
location: git://github.com/sebfisch/haskell-regexp.git
|