-
Notifications
You must be signed in to change notification settings - Fork 0
/
neco.cabal
131 lines (124 loc) · 2.98 KB
/
neco.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 7ea88563033ca47c86d29adde06b8ced42d504691cd48168c51c739d8212ca87
name: neco
version: 0.1.1.0
synopsis: Network Client
description: Please see the README on Github at <https://github.com/himura/neco#readme>
category: Network
homepage: https://github.com/himura/neco#readme
bug-reports: https://github.com/himura/neco/issues
author: Takahiro Himura
maintainer: [email protected]
copyright: 2017 Takahiro Himura
license: BSD3
license-file: LICENSE
tested-with: GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.3
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/himura/neco
flag build-sample
manual: True
default: False
library
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
aeson
, attoparsec
, authenticate-oauth
, base >=4.7 && <5
, bytestring >=0.10.2
, http-client >=0.4.0
, http-client-tls
, http-types
, profunctors
, random
, text
exposed-modules:
Network.Neco
Network.Neco.Exceptions
Network.Neco.Filter.Request.BasicAuth
Network.Neco.Filter.Request.OAuth1
Network.Neco.Filter.Request.OAuth2
Network.Neco.Filter.Response
Network.Neco.Filter.Response.Attoparsec
Network.Neco.Filter.Response.ByteString
Network.Neco.Filter.Response.JSON
Network.Neco.Filter.Response.ResponseCheck
Network.Neco.Filter.RetryFilter
Network.Neco.Internal
Network.Neco.Service.HttpClient
Network.Neco.Service.Stub
Network.Neco.Types
other-modules:
Paths_neco
default-language: Haskell2010
executable sample
main-is: sample.hs
hs-source-dirs:
sample
ghc-options: -Wall
build-depends:
aeson
, attoparsec
, authenticate-oauth
, base >=4.7 && <5
, bytestring >=0.10.2
, http-client >=0.4.0
, http-client-tls
, http-types
, profunctors
, random
, text
if flag(build-sample)
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
lens
, neco
, twitter-types-lens
else
buildable: False
other-modules:
Paths_neco
default-language: Haskell2010
test-suite neco-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson
, attoparsec
, authenticate-oauth
, base >=4.7 && <5
, base64-bytestring
, bytestring >=0.10.2
, http-client >=0.4.0
, http-client-tls
, http-types
, lens
, lens-aeson
, neco
, profunctors
, random
, tasty >=0.7
, tasty-hunit
, tasty-quickcheck
, tasty-th
, text
other-modules:
Filter.Request
Filter.Response
Filter.RetryFilter
Paths_neco
default-language: Haskell2010