-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.yaml
51 lines (45 loc) · 1.24 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
name: fuzzyset
version: 0.3.2
synopsis: Fuzzy set data structure for approximate string matching
github: laserpants/fuzzyset-haskell
license: BSD-3-Clause
license-file: LICENSE
author: "Heikki Johannes Hildén"
maintainer: "[email protected]"
copyright: 2017-present laserpants
category: Data
extra-source-files:
- README.md
description: Please see the README on GitHub at <https://github.com/laserpants/fuzzyset-haskell#readme>
dependencies:
- 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
ghc-options:
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-export-lists
- -Wmissing-home-modules
- -Wpartial-fields
- -Wredundant-constraints
library:
source-dirs: src
tests:
fuzzyset-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- fuzzyset
- hspec >= 2.10.10 && < 2.12
- ieee754 >= 0.8.0 && < 0.9