forked from marcelbuesing/sendgrid-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sendgrid-v3.cabal
60 lines (57 loc) · 1.71 KB
/
sendgrid-v3.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
-- Initial sendgrid-v3.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: sendgrid-v3
version: 1.0.0.1
synopsis: Sendgrid v3 API library
description: SendGrid v3 Mail API client
homepage: https://github.com/marcelbuesing/sendgrid-v3
license: MIT
license-file: LICENSE
author: marcelbuesing
maintainer: buesing.marcel@googlemail.com
-- copyright:
category: Network
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
tested-with:
GHC ==8.10.7
|| ==9.0.2
|| ==9.2.7
|| ==9.4.4
|| ==9.6.1
source-repository head
type: git
location: https://github.com/marcelbuesing/sendgrid-v3
library
exposed-modules: Network.SendGridV3.Api
other-modules: Network.SendGridV3.JSON
-- other-extensions:
build-depends: aeson >= 1.3.0
, containers
, base >=4.8 && < 5
, lens >= 4.13
, semigroups >= 0.18
, text >= 1.2
, wreq >= 0.5
, http-client >= 0.5
, bytestring >= 0.10.8
hs-source-dirs: src
default-language: Haskell2010
test-suite test
default-language:
Haskell2010
type:
exitcode-stdio-1.0
hs-source-dirs:
tests
main-is:
test.hs
build-depends: base >= 4 && < 5
, lens >= 4.13
, semigroups >= 0.18
, sendgrid-v3
, tasty >= 1.0
, tasty-hunit >= 0.10
, text >= 1.2
, wreq >= 0.5