-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepetitions.cabal
48 lines (45 loc) · 1.64 KB
/
repetitions.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
name: repetitions
version: 0.5.2
license: MIT
license-file: LICENSE
author: Sergey Parshukov
maintainer: codedby@bugman.me
category: Tools, Text
build-type: Simple
cabal-version: >=1.20
library
exposed-modules: Repetitions.Core, Repetitions.Frontend
default-language: Haskell2010
default-extensions: OverloadedStrings
ghc-options: -Wall -fwarn-unused-imports -O
build-depends: base >=4.8 && <4.9,
text >=1.2 && <1.3,
blaze-html >=0.8.1 && <0.9,
edit-distance >=0.2 && <0.3
executable app
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
default-extensions: OverloadedStrings
ghc-options: -Wall -fwarn-unused-imports -O
build-depends: base >=4.8 && <4.9,
wai-extra >=3.0,
scotty >=0.10 && <0.11,
text >=1.2 && <1.3,
blaze-html >=0.8.1 && <0.9,
edit-distance >=0.2 && <0.3,
repetitions
test-suite test
main-is: Test.hs
default-language: Haskell2010
default-extensions: OverloadedStrings
type: exitcode-stdio-1.0
hs-source-dirs: tests
ghc-options: -Wall -fwarn-unused-imports
build-depends: base >=4.8 && <4.9
, repetitions
, tasty >=0.11
, tasty-hunit >=0.9
, HUnit >=1.3
, tasty-quickcheck >= 0.8.4
, QuickCheck >=2.5 && <3