-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapi.cabal
63 lines (54 loc) · 1.43 KB
/
api.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
name: api
version: 0.0.1.0
homepage: https://github.com/open-budget/api
bug-reports: https://github.com/open-budget/api/issues
license: MIT
license-file: LICENSE
author: Sergey Gerasimov
maintainer: [email protected]
category: Web
build-type: Simple
cabal-version: >=1.10
data-files:
resourses/index.html
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules:
OpenBudget.Builder
OpenBudget.Types.Area
OpenBudget.Types.Database
OpenBudget.Types.Document
OpenBudget.Types.Expense
build-depends:
base
, aeson == 0.10.0.0
, csv == 0.1.2
, hspec == 2.2.1
, scotty == 0.10.2
, text
, time
, utility-ht == 0.0.11
executable api
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs -threaded
main-is: Main.hs
build-depends:
base
, aeson == 0.10.0.0
, csv == 0.1.2
, api
, scotty == 0.10.2
, containers == 0.5.6.2
test-suite test
default-language: Haskell2010
ghc-options: -Wall -fhpc
hs-source-dirs: spec
main-is: Spec.hs
type: exitcode-stdio-1.0
build-depends:
base
, csv == 0.1.2
, hspec == 2.2.1
, directory
, api