-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
52 lines (49 loc) · 1.12 KB
/
package.yaml
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
name: postmark-dmarc
version: 0.1.0.0
homepage: https://github.com/mgregson/hs-postmark-dmarc#readme
license: MIT
author: Michael Gregson
maintainer: mgregson@gregson.io
copyright: Michael Gregson (c) 2020
category: Network APIs
synopsis: |
A wrapper around Postmark's DMARC REST API
description: |
A wrapper around the [Postmark’s DMARC REST API](https://dmarc.postmarkapp.com/api/)
built on top of "Servant.Client"
extra-source-files:
- README.md
dependencies:
- base >= 4.7 && < 5
- aeson
- aeson-casing
- bytestring
- lens
- servant
- servant-client
- text
- time
- unordered-containers
library:
source-dirs: src
tests:
postmark-dmarc-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- postmark-dmarc
- hspec
- either
- aeson-diff
example-client:
main: Main.hs
source-dirs: example
dependencies:
- postmark-dmarc
- either
- http-client
- http-client-tls