-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLiquidityPools.cabal
75 lines (71 loc) · 2.45 KB
/
LiquidityPools.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
-- Initial LiquidityPools.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: LiquidityPools
version: 0.1.0.0
-- synopsis:
-- description:
license: Apache-2.0
license-file: LICENSE
author: MaicoLeberle
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >=1.10
executable LiquidityPoolsServer
main-is: Server/Main.hs
other-modules: Server.Business
, Server.Database
, Server.Server
, Types.API
, Types.Base
, Types.Database
build-depends: aeson
, base >=4.12 && <4.13
, bytestring
, containers
, extra
, postgresql-simple >=0.5 && <0.7
, random
, servant
, servant-server
, template-haskell
, transformers
, warp
hs-source-dirs: src
default-language: Haskell2010
executable LiquidityPoolsClient
main-is: Client/Main.hs
other-modules: Types.Base
, Types.API
, Types.Database
build-depends: aeson
, base >=4.12 && <4.13
, bytestring
, containers
, extra
, haskeline >=0.7 && <0.8
, http-client
, postgresql-simple >=0.5 && <0.7
, random
, servant
, servant-client
, template-haskell
, text
, transformers
hs-source-dirs: src
default-language: Haskell2010
executable populateDB
main-is: Main.hs
hs-source-dirs: db
, src/Server
other-modules: Business
, Types
build-depends: aeson
, base >=4.12 && <4.13
, containers
, extra
, random
, servant-server
default-language: Haskell2010