-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobile-wallet-backend.cabal
58 lines (52 loc) · 1.19 KB
/
mobile-wallet-backend.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
cabal-version: 2.4
name: mobile-wallet-backend
version: 0.1.0.0
author: BinarApps
maintainer: BinarApps
common lang
default-language: Haskell2010
ghc-options:
-Wall -O2 -flate-specialise -fspecialise-aggressively
library
import: lang
extensions:
NoImplicitPrelude
, OverloadedStrings
, GeneralizedNewtypeDeriving
, ConstraintKinds
, FlexibleContexts
exposed-modules:
App
, Domain.Wallet
, Logger
, Adapter.HTTP.Main
, Adapter.CardanoNode.Wallet
, Config
, CommandLine
hs-source-dirs: src
build-depends:
base >=4.9 && < 5
, classy-prelude
, aeson
, aeson-pretty
, optparse-applicative
, cardano-api
, ouroboros-network
, mtl
, servant
, servant-server
, wai
, wai-cors
, warp
, conferer
, conferer-dhall
, conferer-warp
, co-log
, text-conversions
executable mobile-wallet-backend
import: lang
main-is: Main.hs
build-depends:
base >=4.9 && < 5,
mobile-wallet-backend
hs-source-dirs: app