-
Notifications
You must be signed in to change notification settings - Fork 3
/
exchange-rates.cabal
87 lines (83 loc) · 2.79 KB
/
exchange-rates.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
80
81
82
83
84
85
86
87
cabal-version: >=2.0
-- Initial package description 'exchange-rates.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: exchange-rates
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/gvolpe/exchange-rates
-- bug-reports:
license: Apache-2.0
license-file: LICENSE
author: Gabriel Volpe
maintainer: volpegabriel@gmail.com
-- copyright:
category: Web
build-type: Simple
extra-source-files: CHANGELOG.md
library
exposed-modules: Cache.Redis
, Concurrency.Counter
, Config
, Context
, Data.Interface
, Domain.Currency
, Domain.Model
, Http.Client.Forex
, Http.Handler
, Http.Responses
, Http.Server
, Logger
, Service.CachedForex
, Time
, Utils
build-depends: base
, aeson
, bytestring
, containers
, text
, template-haskell
, dhall
, exceptions
, mtl
, hedis
, lens
, refined
, rio
, servant
, servant-server
, servant-swagger
, swagger2
, wai
, wai-cors
, warp
, wreq
hs-source-dirs: src
default-language: Haskell2010
test-Suite exchange-rates-tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: Rates.CachedForexTest
, Rates.CachedForexRST
, Rates.UtilsTest
build-depends: base >= 4.7 && < 5
, containers
, exchange-rates
, hedgehog >= 1.0
, mtl >= 2.2.2
, rio >= 0.1.9.2
, template-haskell
default-language: Haskell2010
ghc-options: -Wall -threaded -with-rtsopts -N
executable exchange-rates
main-is: Main.hs
ghc-options: -Wall -threaded -rtsopts -with-rtsopts -N
build-depends: base >= 4.7 && < 5
, exchange-rates
, refined >= 0.4.2.1
, rio >= 0.1.9.2
, template-haskell
hs-source-dirs: app
default-language: Haskell2010