-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdhallia.cabal
44 lines (42 loc) · 1.38 KB
/
dhallia.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: dhallia
version: 0.1.0.0
license: BSD3
license-file: LICENSE
author: Gregory.Hale
maintainer: [email protected]
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >= 1.10
library
exposed-modules: Dhallia.API
Dhallia.Cache
Dhallia.Cache.InMemory
Dhallia.Check
Dhallia.Expr
Dhallia.Interpreter.HTTPClient
Dhallia.Interpreter.Repl
Dhallia.Prelude
hs-source-dirs: src
build-depends: base >= 4.11 && < 4.13
, aeson
, algebraic-graphs
, bytestring
, case-insensitive
, containers
, dhall >= 1.26.0
, dhall-json
, http-client
, http-client-tls
, lens-family-core
, mtl
, haskeline
, repline
, row-types
, text
, time
default-language: Haskell2010
executable test-server
main-is: server.hs
hs-source-dirs: app
build-depends: base, aeson, snap-core, snap-server, text, bytestring, case-insensitive
default-language: Haskell2010