-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmandrill.cabal
84 lines (80 loc) · 1.99 KB
/
mandrill.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
name: mandrill
version: 0.5.7.0
synopsis: Library for interfacing with the Mandrill JSON API
description: Pure Haskell client for the Mandrill JSON API
license: MIT
license-file: LICENSE
author: Alfredo Di Napoli
maintainer: alfredo.dinapoli@gmail.com
category: Network
build-type: Simple
tested-with: GHC == 7.4, GHC == 7.6, GHC == 7.8, GHC == 7.10.2
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/adinapoli/mandrill
library
exposed-modules:
Network.API.Mandrill
Network.API.Mandrill.Settings
Network.API.Mandrill.Types
Network.API.Mandrill.Trans
Network.API.Mandrill.Users
Network.API.Mandrill.Users.Types
Network.API.Mandrill.Messages
Network.API.Mandrill.Messages.Types
Network.API.Mandrill.Inbound
Network.API.Mandrill.Webhooks
Network.API.Mandrill.Senders
other-modules:
Network.API.Mandrill.Utils
Network.API.Mandrill.HTTP
-- other-extensions:
build-depends:
base >=4.6 && < 5
, containers >= 0.5.0.0
, bytestring >= 0.9.0
, base64-bytestring >= 1.0.0.1
, text >= 1.0.0.0 && < 2.2
, http-types >= 0.8.0
, http-client >= 0.3.0
, http-client-tls >= 0.2.0.0
, aeson >= 0.7.0.3 && < 3
, microlens-th >= 0.4.0.0
, blaze-html >= 0.5.0.0
, QuickCheck >= 2.6 && < 3.0
, mtl < 3.0
, time
, email-validate >= 1.0.0
, old-locale
, unordered-containers
hs-source-dirs:
src
default-language:
Haskell2010
ghc-options:
-funbox-strict-fields
test-suite mandrill-tests
type:
exitcode-stdio-1.0
main-is:
Main.hs
other-modules:
Tests
RawData
Online
hs-source-dirs:
test
default-language:
Haskell2010
build-depends:
mandrill -any
, base
, aeson
, bytestring
, QuickCheck
, tasty >= 0.9.0.1
, tasty-quickcheck
, tasty-hunit
, raw-strings-qq < 1.2
, text