-
Notifications
You must be signed in to change notification settings - Fork 10
/
postmark.cabal
68 lines (58 loc) · 2.23 KB
/
postmark.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
Name: postmark
Version: 0.2.7
License: BSD3
License-File: LICENSE
Author: Mark Hibberd <[email protected]>
Maintainer: Mark Hibberd <[email protected]>
Copyright: (c) 2012 Mark Hibberd
Synopsis: Library for postmarkapp.com HTTP Api
Category: Network APIs
Homepage: https://github.com/apiengine/postmark
Bug-reports: https://github.com/apiengine/postmark/issues
Cabal-Version: >= 1.8
Build-Type: Simple
Tested-With: GHC == 7.10.3, GHC == 8.0.2
Description:
Library for postmarkapp.com HTTP Api.
Source-Repository head
Type: git
Location: https://github.com/apiengine/postmark.git
Flag demo
Description: Build the demo executable.
Default: False
Manual: True
Library
Build-Depends:
base >= 3 && < 5
, aeson >= 0.6 && < 2.1
, attoparsec >= 0.10 && < 0.15
, bytestring >= 0.9 && < 0.12
, containers >= 0.4 && < 0.7
, http-types >= 0.6 && < 1
, text >= 0.11 && < 1.4
, network-api-support >= 0.3.0 && < 0.4
, http-client-tls >= 0.2.1.1 && < 0.4
GHC-Options:
-Wall -fno-warn-orphans
Hs-Source-Dirs:
src
Exposed-Modules:
Network.Api.Postmark
Network.Api.Postmark.Core
Network.Api.Postmark.Data
Network.Api.Postmark.Error
Network.Api.Postmark.Request
Network.Api.Postmark.Response
Network.Api.Postmark.Settings
Network.Api.Postmark.Tutorial
executable postmark-demo
if flag(demo)
Buildable: True
else
Buildable: False
ghc-options: -Wall -threaded
main-is: demo.hs
hs-source-dirs: demo
build-depends: base
, postmark
, text