-
Notifications
You must be signed in to change notification settings - Fork 19
/
case-insensitive.cabal
73 lines (64 loc) · 2.19 KB
/
case-insensitive.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: case-insensitive
version: 1.2.1.0
cabal-version: >=1.8
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: 2011 Bas van Dijk
author: Bas van Dijk
maintainer: Bas van Dijk <[email protected]>
homepage: https://github.com/basvandijk/case-insensitive
bug-reports: https://github.com/basvandijk/case-insensitive/issues
category: Data, Text
synopsis: Case insensitive string comparison
description: The module @Data.CaseInsensitive@ provides the 'CI' type
constructor which can be parameterised by a string-like
type like: 'String', 'ByteString', 'Text',
etc.. Comparisons of values of the resulting type will be
insensitive to cases.
tested-with:
GHC==7.0.4,
GHC==7.2.2
GHC==7.4.2,
GHC==7.6.3,
GHC==7.8.4,
GHC==7.10.3,
GHC==8.0.1
extra-source-files: README.markdown CHANGELOG pg2189.txt
source-repository head
Type: git
Location: git://github.com/basvandijk/case-insensitive.git
Library
ghc-options: -Wall
build-depends: base >= 3 && < 5
, bytestring >= 0.9
, text >= 0.3
, deepseq >= 1.1
, hashable >= 1.0
if !impl(ghc >= 8.0)
build-depends: semigroups >= 0.18
exposed-modules: Data.CaseInsensitive, Data.CaseInsensitive.Unsafe
other-modules: Data.CaseInsensitive.Internal
test-suite test-case-insensitive
type: exitcode-stdio-1.0
main-is: test.hs
hs-source-dirs: test
build-depends: case-insensitive
, base >= 3 && < 5
, bytestring >= 0.9
, text >= 0.3
, HUnit >= 1.2.2
, test-framework >= 0.2.4
, test-framework-hunit >= 0.2.4
ghc-options: -Wall
benchmark bench-case-insensitive
type: exitcode-stdio-1.0
main-is: bench.hs
other-modules: NoClass
hs-source-dirs: bench
ghc-options: -Wall -O2
build-depends: case-insensitive
, base >= 3 && < 5
, bytestring >= 0.9
, criterion >= 0.6.1
, deepseq >= 1.1