-
Notifications
You must be signed in to change notification settings - Fork 0
/
services-haskell.cabal
44 lines (42 loc) · 1.31 KB
/
services-haskell.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
name: services-haskell
version: 0.1.0.0
synopsis: Monto Services for Haskell
license: BSD3
license-file: LICENSE
author: Sven Keidel
maintainer: [email protected]
copyright: Copyright (c) 2015, Sven Keidel
category: Editor
build-type: Simple
cabal-version: >=1.10
data-files:
assets/*.png
executable services-haskell
main-is: Main.hs
ghc-options: -Wall -O2
other-modules: Tokens,
SourceSpan,
Util,
ErrorMessages,
AST,
Outline
build-depends: base,
bytestring,
directory,
monto-broker,
ghc,
ghc-paths,
text,
aeson,
vector,
containers,
optparse-applicative,
http-types,
syb,
time,
unix,
warp,
wai,
zeromq4-haskell
hs-source-dirs: src
default-language: Haskell2010