-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsendgrid-v3.cabal
90 lines (84 loc) · 2.47 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
cabal-version: 2.4
name: sendgrid-v3
version: 1.1.0.0
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-doc-files:
ChangeLog.md
README.md
extra-source-files:
examples/*.hs
stack.yaml
tested-with: GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.8
, GHC == 9.4.8
, GHC == 9.6.5
, GHC == 9.8.2
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
, http-client-tls >= 0.3
, crypton-connection >= 0.3
, tls >= 1.8
, network-simple-tls >= 0.4
, 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
Flag examples
Description: Build the examples
Default: False
Manual: True
common examples-settings
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
default-extensions: OverloadedStrings
build-depends: base >= 4.7 && < 5
, lens
, sendgrid-v3
, text
, wreq
hs-source-dirs: examples
if !flag(examples)
buildable: False
executable SendEmail
import: examples-settings
scope: private
main-is: SendEmail.hs