1- name : github
2- version : 0.20
3- synopsis : Access to the GitHub API, v3.
1+ cabal-version : >= 1.10
2+ name : github
3+ version : 0.21
4+ synopsis : Access to the GitHub API, v3.
5+ category : Network
46description :
57 The GitHub API provides programmatic access to the full
68 GitHub Web site, from Issues to Gists to repos down to the underlying git data
@@ -17,52 +19,56 @@ description:
1719 > print possibleUser
1820 .
1921 For more of an overview please see the README : <https://github.com/phadej/github/blob/master/README.md>
20- license : BSD3
21- license-file : LICENSE
22- author : Mike Burns, John Wiegley, Oleg Grenrus
23- maintainer : Oleg Grenrus <oleg.grenrus@iki.fi>
24- homepage : https://github.com/phadej/github
25- copyright : Copyright 2012-2013 Mike Burns, Copyright 2013-2015 John Wiegley, Copyright 2016 Oleg Grenrus
26- category : Network
27- build-type : Simple
28- tested-with : GHC== 7.8.4 , GHC== 7.10.3 , GHC== 8.0.2 , GHC== 8.2.2 , GHC== 8.4.3 , GHC== 8.6.1
29- cabal-version : >= 1.10
22+
23+ license : BSD3
24+ license-file : LICENSE
25+ author : Mike Burns, John Wiegley, Oleg Grenrus
26+ maintainer : Oleg Grenrus <oleg.grenrus@iki.fi>
27+ homepage : https://github.com/phadej/github
28+ build-type : Simple
29+ copyright :
30+ Copyright 2012-2013 Mike Burns, Copyright 2013-2015 John Wiegley, Copyright 2016-2019 Oleg Grenrus
31+
32+ tested-with :
33+ ghc == 7.8.4 || == 7.10.3 || == 8.0.2 || == 8.2.2 || == 8.4.3 || == 8.6.3
34+
3035extra-source-files :
31- README.md,
32- CHANGELOG.md,
33- fixtures/issue-search.json,
34- fixtures/list-teams.json,
35- fixtures/members-list.json,
36- fixtures/pull-request-opened.json,
37- fixtures/pull-request-review-requested.json,
38- fixtures/user-organizations.json,
36+ README.md
37+ CHANGELOG.md
38+ fixtures/issue-search.json
39+ fixtures/list-teams.json
40+ fixtures/members-list.json
41+ fixtures/pull-request-opened.json
42+ fixtures/pull-request-review-requested.json
43+ fixtures/user-organizations.json
3944 fixtures/user.json
4045
4146source-repository head
42- type : git
47+ type : git
4348 location : git://github.com/phadej/github.git
4449
45- Library
46- default-language : Haskell2010
47- ghc-options : -Wall
48- hs-source-dirs : src
50+ library
51+ default-language : Haskell2010
52+ ghc-options : -Wall
53+ hs-source-dirs : src
4954 default-extensions :
5055 DataKinds
5156 DeriveDataTypeable
5257 DeriveGeneric
5358 OverloadedStrings
5459 ScopedTypeVariables
60+
5561 other-extensions :
5662 CPP
5763 FlexibleContexts
5864 FlexibleInstances
5965 GADTs
6066 KindSignatures
67+ RecordWildCards
6168 StandaloneDeriving
62- RecordWildCards
69+
6370 exposed-modules :
6471 GitHub
65- GitHub.Internal.Prelude
6672 GitHub.Auth
6773 GitHub.Data
6874 GitHub.Data.Activities
@@ -111,8 +117,8 @@ Library
111117 GitHub.Endpoints.Organizations.Members
112118 GitHub.Endpoints.Organizations.Teams
113119 GitHub.Endpoints.PullRequests
114- GitHub.Endpoints.PullRequests.Reviews
115120 GitHub.Endpoints.PullRequests.Comments
121+ GitHub.Endpoints.PullRequests.Reviews
116122 GitHub.Endpoints.RateLimit
117123 GitHub.Endpoints.Repos
118124 GitHub.Endpoints.Repos.Collaborators
@@ -129,50 +135,52 @@ Library
129135 GitHub.Endpoints.Users
130136 GitHub.Endpoints.Users.Emails
131137 GitHub.Endpoints.Users.Followers
138+ GitHub.Internal.Prelude
132139 GitHub.Request
133140
134141 -- Packages bundles with GHC, mtl and text are also here
135142 build-depends :
136- base >= 4.7 && < 4.13 ,
137- binary >= 0.7.1.0 && < 0.11 ,
138- bytestring >= 0.10.4.0 && < 0.11 ,
139- containers >= 0.5.5.1 && < 0.7 ,
140- deepseq >= 1.3.0.2 && < 1.5 ,
141- mtl ( >= 2.1.3.1 && < 2.2 ) || ( >= 2.2.1 && < 2.3 ),
142- text >= 1.2.0.6 && < 1.3 ,
143- time >= 1.4 && < 1.10 ,
144- transformers >= 0.3.0.0 && < 0.6
143+ base >= 4.7 && < 4.13
144+ , binary >= 0.7.1.0 && < 0.11
145+ , bytestring >= 0.10.4.0 && < 0.11
146+ , containers >= 0.5.5.1 && < 0.7
147+ , deepseq >= 1.3.0.2 && < 1.5
148+ , mtl >= 2.1.3.1 && < 2.2 || >= 2.2.1 && < 2.3
149+ , text >= 1.2.0.6 && < 1.3
150+ , time >= 1.4 && < 1.10
151+ , transformers >= 0.3.0.0 && < 0.6
145152
146153 -- other packages
147154 build-depends :
148- aeson >= 1.4.0.0 && < 1.5 ,
149- base-compat >= 0.10.4 && < 0.11 ,
150- base16-bytestring >= 0.1.1.6 && < 0.2 ,
151- binary-orphans >= 0.1.8.0 && < 0.2 ,
152- cryptohash-sha1 >= 0.11.100.1 && < 0.12 ,
153- deepseq-generics >= 0.2.0.0 && < 0.3 ,
154- exceptions >= 0.10.0 && < 0.11 ,
155- hashable >= 1.2.7.0 && < 1.3 ,
156- http-client >= 0.5.12 && < 0.7 ,
157- http-client-tls >= 0.3.5.3 && < 0.4 ,
158- http-link-header >= 1.0.3.1 && < 1.1 ,
159- http-types >= 0.12.1 && < 0.13 ,
160- iso8601-time >= 0.1.5 && < 0.2 ,
161- network-uri >= 2.6.1.0 && < 2.7 ,
162- semigroups >= 0.18.5 && < 0.19 ,
163- transformers-compat >= 0.6 && < 0.7 ,
164- unordered-containers >= 0.2.9.0 && < 0.3 ,
165- vector >= 0.12.0.1 && < 0.13 ,
166- vector-instances >= 3.4 && < 3.5 ,
167-
168- tls >= 1.4.1
155+ aeson >= 1.4.0.0 && < 1.5
156+ , base-compat >= 0.10.4 && < 0.11
157+ , base16-bytestring >= 0.1.1.6 && < 0.2
158+ , binary-orphans >= 0.1.8.0 && < 0.2
159+ , cryptohash-sha1 >= 0.11.100.1 && < 0.12
160+ , deepseq-generics >= 0.2.0.0 && < 0.3
161+ , exceptions >= 0.10.0 && < 0.11
162+ , hashable >= 1.2.7.0 && < 1.3
163+ , http-client >= 0.5.12 && < 0.7
164+ , http-client-tls >= 0.3.5.3 && < 0.4
165+ , http-link-header >= 1.0.3.1 && < 1.1
166+ , http-types >= 0.12.1 && < 0.13
167+ , iso8601-time >= 0.1.5 && < 0.2
168+ , network-uri >= 2.6.1.0 && < 2.7
169+ , semigroups >= 0.18.5 && < 0.19
170+ , tls >= 1.4.1
171+ , transformers-compat >= 0.6 && < 0.7
172+ , unordered-containers >= 0.2.9.0 && < 0.3
173+ , vector >= 0.12.0.1 && < 0.13
174+ , vector-instances >= 3.4 && < 3.5
169175
170176test-suite github-test
171- default-language : Haskell2010
172- type : exitcode-stdio-1.0
173- hs-source-dirs : spec
174- other-extensions :
175- TemplateHaskell
177+ default-language : Haskell2010
178+ type : exitcode-stdio-1.0
179+ hs-source-dirs : spec
180+ main-is : Spec.hs
181+ ghc-options : -Wall
182+ build-tool-depends : hspec-discover :hspec-discover >= 2.6.1 && < 2.8
183+ other-extensions : TemplateHaskell
176184 other-modules :
177185 GitHub.ActivitySpec
178186 GitHub.CommitsSpec
@@ -186,15 +194,14 @@ test-suite github-test
186194 GitHub.ReposSpec
187195 GitHub.SearchSpec
188196 GitHub.UsersSpec
189- main-is : Spec.hs
190- ghc-options : -Wall
191- build-tool-depends : hspec-discover :hspec-discover >= 2.6.1 && < 2.7
192- build-depends : base,
193- base-compat,
194- aeson,
195- bytestring,
196- github,
197- vector,
198- unordered-containers,
199- file-embed,
200- hspec >= 2.6.1 && < 2.7
197+
198+ build-depends :
199+ aeson
200+ , base
201+ , base-compat
202+ , bytestring
203+ , file-embed
204+ , github
205+ , hspec >= 2.6.1 && < 2.8
206+ , unordered-containers
207+ , vector
0 commit comments