-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfuzzyset.cabal
73 lines (68 loc) · 2.28 KB
/
fuzzyset.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
cabal-version: 2.2
-- This file has been generated from package.yaml by hpack version 0.36.0.
--
-- see: https://github.com/sol/hpack
name: fuzzyset
version: 0.3.2
synopsis: Fuzzy set data structure for approximate string matching
description: Please see the README on GitHub at <https://github.com/laserpants/fuzzyset-haskell#readme>
category: Data
homepage: https://github.com/laserpants/fuzzyset-haskell#readme
bug-reports: https://github.com/laserpants/fuzzyset-haskell/issues
author: Heikki Johannes Hildén
maintainer: [email protected]
copyright: 2017-present laserpants
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/laserpants/fuzzyset-haskell
library
exposed-modules:
Data.FuzzySet
Data.FuzzySet.Internal
Data.FuzzySet.Monad
Data.FuzzySet.Simple
Data.FuzzySet.Utils
other-modules:
Paths_fuzzyset
autogen-modules:
Paths_fuzzyset
hs-source-dirs:
src
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints
build-depends:
base >=4.7 && <5
, mtl >=2.2.2 && <2.5
, text >=2.0.2 && <2.2
, text-metrics >=0.3.2 && <0.5
, transformers >=0.5.6.2 && <0.8
, unordered-containers >=0.2.19.1 && <0.4
, vector >=0.13.0.0 && <0.15
default-language: Haskell2010
test-suite fuzzyset-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Helpers
Paths_fuzzyset
autogen-modules:
Paths_fuzzyset
hs-source-dirs:
test
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, fuzzyset
, hspec >=2.10.10 && <2.12
, ieee754 >=0.8.0 && <0.9
, mtl >=2.2.2 && <2.5
, text >=2.0.2 && <2.2
, text-metrics >=0.3.2 && <0.5
, transformers >=0.5.6.2 && <0.8
, unordered-containers >=0.2.19.1 && <0.4
, vector >=0.13.0.0 && <0.15
default-language: Haskell2010