forked from haskell-github/github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub.cabal
210 lines (201 loc) · 6.38 KB
/
github.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
name: github
version: 0.19
x-revision: 3
synopsis: Access to the GitHub API, v3.
description:
The GitHub API provides programmatic access to the full
GitHub Web site, from Issues to Gists to repos down to the underlying git data
like references and trees. This library wraps all of that, exposing a basic but
Haskell-friendly set of functions and data structures.
.
For supported endpoints see "GitHub" module.
.
> import qualified GitHub as GH
>
> main :: IO ()
> main = do
> possibleUser <- GH.executeRequest' $ GH.userInfoR "phadej"
> print possibleUser
.
For more of an overview please see the README: <https://github.com/phadej/github/blob/master/README.md>
license: BSD3
license-file: LICENSE
author: Mike Burns, John Wiegley, Oleg Grenrus
maintainer: Oleg Grenrus <[email protected]>
homepage: https://github.com/phadej/github
copyright: Copyright 2012-2013 Mike Burns, Copyright 2013-2015 John Wiegley, Copyright 2016 Oleg Grenrus
category: Network
build-type: Simple
tested-with: GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.3
cabal-version: >=1.10
extra-source-files:
README.md,
CHANGELOG.md,
fixtures/issue-search.json,
fixtures/list-teams.json,
fixtures/members-list.json,
fixtures/pull-request-opened.json,
fixtures/pull-request-review-requested.json,
fixtures/user-organizations.json,
fixtures/user.json
flag aeson-compat
description: Whether to use aeson-compat or aeson-extra
default: True
manual: False
source-repository head
type: git
location: git://github.com/phadej/github.git
Library
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
default-extensions:
DataKinds
DeriveDataTypeable
DeriveGeneric
OverloadedStrings
ScopedTypeVariables
other-extensions:
CPP
FlexibleContexts
FlexibleInstances
GADTs
KindSignatures
StandaloneDeriving
exposed-modules:
GitHub
GitHub.Internal.Prelude
GitHub.Auth
GitHub.Data
GitHub.Data.Activities
GitHub.Data.Comments
GitHub.Data.Content
GitHub.Data.Definitions
GitHub.Data.DeployKeys
GitHub.Data.Email
GitHub.Data.Events
GitHub.Data.Gists
GitHub.Data.GitData
GitHub.Data.Id
GitHub.Data.Invitation
GitHub.Data.Issues
GitHub.Data.Milestone
GitHub.Data.Name
GitHub.Data.Options
GitHub.Data.PullRequests
GitHub.Data.Releases
GitHub.Data.Repos
GitHub.Data.Request
GitHub.Data.Reviews
GitHub.Data.Search
GitHub.Data.Statuses
GitHub.Data.Teams
GitHub.Data.URL
GitHub.Data.Webhooks
GitHub.Data.Webhooks.Validate
GitHub.Endpoints.Activity.Events
GitHub.Endpoints.Activity.Starring
GitHub.Endpoints.Activity.Watching
GitHub.Endpoints.Gists
GitHub.Endpoints.Gists.Comments
GitHub.Endpoints.GitData.Blobs
GitHub.Endpoints.GitData.Commits
GitHub.Endpoints.GitData.References
GitHub.Endpoints.GitData.Trees
GitHub.Endpoints.Issues
GitHub.Endpoints.Issues.Comments
GitHub.Endpoints.Issues.Events
GitHub.Endpoints.Issues.Labels
GitHub.Endpoints.Issues.Milestones
GitHub.Endpoints.Organizations
GitHub.Endpoints.Organizations.Members
GitHub.Endpoints.Organizations.Teams
GitHub.Endpoints.PullRequests
GitHub.Endpoints.PullRequests.Reviews
GitHub.Endpoints.PullRequests.Comments
GitHub.Endpoints.Repos
GitHub.Endpoints.Repos.Collaborators
GitHub.Endpoints.Repos.Comments
GitHub.Endpoints.Repos.Commits
GitHub.Endpoints.Repos.Contents
GitHub.Endpoints.Repos.DeployKeys
GitHub.Endpoints.Repos.Forks
GitHub.Endpoints.Repos.Releases
GitHub.Endpoints.Repos.Statuses
GitHub.Endpoints.Repos.Webhooks
GitHub.Endpoints.Search
GitHub.Endpoints.Users
GitHub.Endpoints.Users.Emails
GitHub.Endpoints.Users.Followers
GitHub.Request
-- Packages bundles with GHC, mtl and text are also here
build-depends:
base >=4.7 && <4.12,
bytestring >=0.10.4.0 && <0.11,
containers >=0.5.5.1 && <0.6,
deepseq >=1.3.0.2 && <1.5,
mtl (>=2.1.3.1 && <2.2) || (>=2.2.1 && <2.3),
text >=1.2.0.6 && <1.3,
time >=1.4 && <1.10,
transformers >=0.3.0.0 && <0.6
-- other packages
build-depends:
aeson >=0.7.0.6 && <1.5,
base-compat >=0.9.1 && <0.11,
base16-bytestring >=0.1.1.6 && <0.2,
binary >=0.7.1.0 && <0.10,
binary-orphans >=0.1.0.0 && <0.2,
byteable >=0.1.1 && <0.2,
cryptohash >=0.11 && <0.12,
deepseq-generics >=0.1.1.2 && <0.3,
exceptions >=0.8.0.2 && <0.11,
hashable >=1.2.3.3 && <1.3,
http-client >=0.4.8.1 && <0.6,
http-client-tls >=0.2.2 && <0.4,
http-link-header >=1.0.1 && <1.1,
http-types >=0.12.1 && <0.13,
iso8601-time >=0.1.4 && <0.2,
network-uri >=2.6.0.3 && <2.7,
semigroups >=0.16.2.2 && <0.19,
transformers-compat >=0.4.0.3 && <0.7,
unordered-containers >=0.2 && <0.3,
vector >=0.10.12.3 && <0.13,
vector-instances >=3.3.0.1 && <3.5,
tls >=1.3.5
if flag(aeson-compat)
build-depends: aeson-compat >=0.3.0.0 && <0.4
else
build-depends: aeson-extra >=0.2.0.0 && <0.3
test-suite github-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: spec
other-extensions:
TemplateHaskell
other-modules:
GitHub.ActivitySpec
GitHub.CommitsSpec
GitHub.OrganizationsSpec
GitHub.IssuesSpec
GitHub.PullRequestsSpec
GitHub.PullRequestReviewsSpec
GitHub.ReleasesSpec
GitHub.ReposSpec
GitHub.SearchSpec
GitHub.UsersSpec
GitHub.EventsSpec
main-is: Spec.hs
ghc-options: -Wall
build-tool-depends: hspec-discover:hspec-discover
build-depends: base,
base-compat,
bytestring,
github,
vector,
unordered-containers,
file-embed,
hspec
if flag(aeson-compat)
build-depends: aeson-compat
else
build-depends: aeson-extra