-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhsku.cabal
57 lines (51 loc) · 1.6 KB
/
hsku.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
cabal-version: 3.0
name: hsku
version: 0.0.1
license: MIT
author: Mirko Westermeier
build-type: Simple
extra-source-files: languages/*.yml
common basics
default-language: Haskell2010
default-extensions: OverloadedStrings
, TupleSections
, TypeOperators
, DataKinds
, DeriveGeneric
build-depends: base >= 4.14.0.0
, containers
, directory
, filepath
, text
, extra
, aeson
, servant
, servant-server
ghc-options: -Wall
library
import: basics
exposed-modules: HsKu, HsKu.Load, HsKu.Web, HsKu.JSON
build-depends: yaml, megaparsec, mtl, bytestring
hs-source-dirs: lib
executable hsku-webservice
import: basics
build-depends: hsku, warp
hs-source-dirs: webservice
main-is: Main.hs
executable hsku-cli
import: basics
build-depends: hsku, bytestring
hs-source-dirs: cli
main-is: Main.hs
test-suite hsku-test
import: basics
type: exitcode-stdio-1.0
default-extensions: QuasiQuotes
build-depends: hsku
, hspec
, hspec-wai
, hspec-wai-json
, uri-encode
, temporary
hs-source-dirs: test
main-is: Main.hs