-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
63 lines (57 loc) · 1.17 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
52
53
54
55
56
57
58
59
60
61
62
63
---
name: symspell
version: 0.1.0.0
synopsis: SymSpell spelling correction
description: Efficient spellchecking through symmetric delete pre-computation
category: Language
github: cbeav/symspell
license: BSD3
author: Chris Beavers
maintainer: Chris Beavers <[email protected]>
homepage: http://github.com/cbeav/symspell
extra-source-files:
- README.md
- CHANGELOG.md
dependencies:
- aeson
- aeson-casing
- attoparsec
- base >= 4.7 && < 5
- classy-prelude
- closed
- containers
- data-default
- ghc-compact
- text
- text-metrics
- unordered-containers
library:
source-dirs: src
default-extensions:
- NoImplicitPrelude
- OverloadedStrings
- RecordWildCards
- DeriveGeneric
- ScopedTypeVariables
- TupleSections
executables:
symspell-server:
main: Main.hs
source-dirs: example
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- servant
- servant-server
- symspell
- wai
- warp
tests:
test:
main: Spec.hs
source-dirs: test
dependencies:
- hspec
- symspell