-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmollie-api-haskell.cabal
71 lines (68 loc) · 2.73 KB
/
mollie-api-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
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
name: mollie-api-haskell
version: 2.0.0.0
synopsis: Mollie API client for Haskell http://www.mollie.com
description: Please see README.md
homepage: https://github.com/paramander/mollie-api-haskell
license: BSD3
license-file: LICENSE
author: Paramander
maintainer: [email protected]
copyright: 2018 Paramander
category: Web
build-type: Simple
-- extra-source-files:
data-files: data/cacert.pem
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Mollie.API
, Mollie.API.Payments
, Mollie.API.Refunds
, Mollie.API.Methods
, Mollie.API.Customers
, Mollie.API.Mandates
, Mollie.API.Subscriptions
, Mollie.API.Chargebacks
other-modules: Mollie.API.Internal
, Mollie.API.Helpers
, Mollie.API.Types
, Paths_mollie_api_haskell
build-depends: base >= 4.7 && < 5
, aeson >= 1.0 && < 1.5
, time >= 1.5 && < 2
, text >= 1.2 && < 2
, http-client >= 0.5 && < 0.6
, http-client-tls >= 0.3 && < 0.4
, http-media >= 0.7 && < 0.8
, mtl >= 2.2 && < 3
, http-types >= 0.9 && < 1
, bytestring >= 0.10 && < 1
, currency-codes >= 3.0 && < 4
, unordered-containers >= 0.2.9.0 && < 0.3
, lens >= 4.16 && < 5
, servant >= 0.14 && < 0.15
, servant-client >= 0.14 && < 0.15
, servant-client-core >= 0.14 && < 0.15
, data-default >= 0.7 && < 0.8
default-language: Haskell2010
test-suite mollie-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
default-extensions: OverloadedStrings
other-modules: Fixtures
build-depends: base
, mollie-api-haskell
, tasty
, tasty-hunit
, aeson >= 1.0 && < 1.4
, bytestring >= 0.10 && < 1
, currency-codes >= 3.0 && < 4
, lens >= 4.16 && < 5
, data-default >= 0.7 && < 0.8
, time >= 1.5 && < 2
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/paramander/mollie-api-haskell