-
Notifications
You must be signed in to change notification settings - Fork 1
/
ceburilo.cabal
79 lines (73 loc) · 2.19 KB
/
ceburilo.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
-- Initial ceburilo.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: ceburilo
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD3
license-file: LICENSE
author: Hurr Durr Monadic Warriors
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Ceburilo.Types
Ceburilo.Graph
Ceburilo.Geo
build-depends: base >= 4.8
, astar
, aeson
, containers
, unordered-containers
, bytestring
, vector
, text
, deepseq
, unordered-containers
ghc-options:
-Wall
-O2
-Werror=missing-methods
executable ceburilo
hs-source-dirs: app
main-is: server/Main.hs
build-depends: base >= 4.8
, bytestring
, servant
, servant-server
, either
, wai
, warp
, ceburilo
, text
, aeson
, containers
, transformers
, wai-cors
, deepseq
default-language: Haskell2010
ghc-options: -Wall -O2 -rtsopts
executable precompute
hs-source-dirs: app
main-is: precompute/Main.hs
build-depends: base >= 4.8
, ceburilo
, http-types
, http-client
, bytestring
, aeson
, data-default
, containers
, xml-conduit
, text
, vector
, async
, text
, conduit
, stm-conduit
default-language: Haskell2010
ghc-options: -Wall -O2 -threaded