-
Notifications
You must be signed in to change notification settings - Fork 0
/
pushy-client.cabal
79 lines (72 loc) · 2.2 KB
/
pushy-client.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
cabal-version: 2.4
name: pushy-client
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/Holmusk/pushy-client#readme>
synopsis: HTTP client library for Pushy API
homepage: https://github.com/Holmusk/pushy-client#readme
bug-reports: https://github.com/Holmusk/pushy-client/issues
author: Holmusk
maintainer: Holmusk <[email protected]>
copyright: 2020 Holmusk
license: BSD-3-Clause
license-file: LICENSE
category: Web
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
tested-with: GHC == 8.6.5
source-repository head
type: git
location: https://github.com/Holmusk/pushy-client
common common-options
build-depends: base >=4.7 && <5
default-language: Haskell2010
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
-Wpartial-fields
-Wno-unrecognised-pragmas
Flag examples
Description: Build example projects
Default: False
library
import: common-options
exposed-modules: PushyClient
, PushyClient.Types.PushyRequest
, PushyClient.Types.PushyResponse
hs-source-dirs: src
build-depends: aeson
, bytestring ^>= 0.10
, exceptions ^>= 0.10.4
, http-client
, http-conduit
, http-types
, text ^>= 1.2
test-suite pushy-client-test
import: common-options
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules: Paths_pushy_client
autogen-modules: Paths_pushy_client
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: pushy-client
executable example-mock-request
import: common-options
if flag (examples)
buildable: True
else
buildable: False
hs-source-dirs: examples
main-is: MockRequest.hs
build-depends: aeson
, bytestring ^>= 0.10
, pushy-client
, text ^>= 1.2
default-language: Haskell2010