-
Notifications
You must be signed in to change notification settings - Fork 0
/
test2.json
370 lines (365 loc) · 24.1 KB
/
test2.json
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
{
"url": "https://api.github.com/repos/XAMPPRocky/octocrab/pulls/191",
"id": 838909333,
"node_id": "PR_kwDOD4Ga3s4yAL2V",
"html_url": "https://github.com/XAMPPRocky/octocrab/pull/191",
"diff_url": "https://github.com/XAMPPRocky/octocrab/pull/191.diff",
"patch_url": "https://github.com/XAMPPRocky/octocrab/pull/191.patch",
"issue_url": "https://api.github.com/repos/XAMPPRocky/octocrab/issues/191",
"number": 191,
"state": "open",
"locked": false,
"title": "Update jsonwebtoken requirement from 7 to 8",
"user": {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"body": "Updates the requirements on [jsonwebtoken](https://github.com/Keats/jsonwebtoken) to permit the latest version.\n<details>\n<summary>Changelog</summary>\n<p><em>Sourced from <a href=\"https://github.com/Keats/jsonwebtoken/blob/master/CHANGELOG.md\">jsonwebtoken's changelog</a>.</em></p>\n<blockquote>\n<h2>8.0.0 (2022-02-02)</h2>\n<ul>\n<li>Add EdDSA algorithm</li>\n<li><code>sign</code>/<code>verify</code> now takes a <code>&[u8]</code> instead of <code>&str</code> to be more flexible</li>\n<li><code>DecodingKey</code> now own its data</li>\n<li>Remove deprecated <code>dangerous_unsafe_decode</code></li>\n<li><code>Validation::iss</code> is now a <code>HashSet</code> instead of a single value</li>\n<li><code>decode</code> will now error if <code>Validation::algorithms</code> is empty</li>\n<li>Add JWKs types for easy interop with various Oauth provider, see <code>examples/auth0.rs</code> for an example</li>\n<li>Removed <code>decode_*</code> functions in favour of using the <code>Validation</code> struct</li>\n<li>Allow float values for <code>exp</code> and <code>nbf</code>, yes it's in the spec... floats will be rounded and converted to u64</li>\n<li>Error now implements Clone/Eq</li>\n<li>Change default leeway from 0s to 60s</li>\n<li>Add <code>Validation::require_spec_claims</code> to validate presence of the spec claims</li>\n<li>Add default feature for pem decoding named <code>use_pem</code> that can be disabled to avoid 2 dependencies</li>\n</ul>\n<h2>7.2.0 (2020-06-30)</h2>\n<ul>\n<li>Add <code>dangerous_insecure_decode</code> to replace <code>dangerous_unsafe_decode</code>, which is now deprecated</li>\n<li>Add <code>dangerous_insecure_decode_with_validation</code></li>\n</ul>\n<h2>7.1.2 (2020-06-16)</h2>\n<ul>\n<li>Derive <code>Hash</code> for <code>Header</code> and <code>Algorithm</code></li>\n</ul>\n<h2>7.1.1 (2020-06-09)</h2>\n<ul>\n<li>Update dependencies</li>\n</ul>\n<h2>7.1.0 (2020-03-01)</h2>\n<ul>\n<li>Add <code>into_static</code> to <code>DecodingKey</code> for easier re-use</li>\n</ul>\n<h1>7.0.0 (2020-01-28)</h1>\n<ul>\n<li>Add support for PS256, PS384 and PS512</li>\n<li>Add support for verifying with modulus/exponent components for RSA</li>\n<li>Update to 2018 edition</li>\n<li>Changed aud field type in Validation to <code>Option<HashSet<String>></code>. Audience\nvalidation now tests for "any-of-these" audience membership.</li>\n<li>Add support for keys in PEM format</li>\n<li>Add EncodingKey/DecodingKey API to improve performance and UX</li>\n</ul>\n<h2>6.0.1 (2019-05-10)</h2>\n<ul>\n<li>Fix Algorithm mapping in FromStr for RSA</li>\n</ul>\n<h2>6.0.0 (2019-04-21)</h2>\n<ul>\n<li>Update Ring to 0.14</li>\n</ul>\n<!-- raw HTML omitted -->\n</blockquote>\n<p>... (truncated)</p>\n</details>\n<details>\n<summary>Commits</summary>\n<ul>\n<li><a href=\"https://github.com/Keats/jsonwebtoken/commit/af684c146f288d993c632e15fb390f29ebe46683\"><code>af684c1</code></a> Get ready for release</li>\n<li><a href=\"https://github.com/Keats/jsonwebtoken/commit/03927bf31940186c7486c1fa50e2d1ebca624b14\"><code>03927bf</code></a> reduced default double allocation to one (<a href=\"https://github-redirect.dependabot.com/Keats/jsonwebtoken/issues/232\">#232</a>)</li>\n<li><a href=\"https://github.com/Keats/jsonwebtoken/commit/75b9f8ae0019d2f3ba01ff89bd0409c9594d765a\"><code>75b9f8a</code></a> More update to MSRV</li>\n<li><a href=\"https://github.com/Keats/jsonwebtoken/commit/5162b6391c3e408d11e3ce90a462bd38cf21f852\"><code>5162b63</code></a> Update pinned ci version</li>\n<li><a href=\"https://github.com/Keats/jsonwebtoken/commit/1a46cfa7c968ca012491ccc59b4795511d0d0d0d\"><code>1a46cfa</code></a> Add default feature use_pem</li>\n<li><a href=\"https://github.com/Keats/jsonwebtoken/commit/5486f96f52e5bbfeb0f695d26fadd91989fda330\"><code>5486f96</code></a> Remove iat mention</li>\n<li><a href=\"https://github.com/Keats/jsonwebtoken/commit/4598ba0a8ce9b88adb0d8ee64b126a7e5fcc3674\"><code>4598ba0</code></a> Beta 7</li>\n<li><a href=\"https://github.com/Keats/jsonwebtoken/commit/255c740e477217e564b0f603cc3265009c66d838\"><code>255c740</code></a> Add required_spec_claims (<a href=\"https://github-redirect.dependabot.com/Keats/jsonwebtoken/issues/225\">#225</a>)</li>\n<li><a href=\"https://github.com/Keats/jsonwebtoken/commit/356fac075d265392d14a423abab52d7c71154134\"><code>356fac0</code></a> Fix validation for issuers</li>\n<li><a href=\"https://github.com/Keats/jsonwebtoken/commit/5ed8af440c5a4dcc672a227c740c151b3af7eb64\"><code>5ed8af4</code></a> Rename set_iss to be in line with set_audience</li>\n<li>Additional commits viewable in <a href=\"https://github.com/Keats/jsonwebtoken/compare/v7.0.1...v8.0.0\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n</details>",
"created_at": "2022-02-03T04:11:42Z",
"updated_at": "2022-02-03T04:11:43Z",
"closed_at": null,
"merged_at": null,
"merge_commit_sha": "7bc950c0081f14ab2faa0de3689cc4743748f9b6",
"assignee": null,
"assignees": [
],
"requested_reviewers": [
],
"requested_teams": [
],
"labels": [
{
"id": 2390243260,
"node_id": "MDU6TGFiZWwyMzkwMjQzMjYw",
"url": "https://api.github.com/repos/XAMPPRocky/octocrab/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
}
],
"milestone": null,
"draft": false,
"commits_url": "https://api.github.com/repos/XAMPPRocky/octocrab/pulls/191/commits",
"review_comments_url": "https://api.github.com/repos/XAMPPRocky/octocrab/pulls/191/comments",
"review_comment_url": "https://api.github.com/repos/XAMPPRocky/octocrab/pulls/comments{/number}",
"comments_url": "https://api.github.com/repos/XAMPPRocky/octocrab/issues/191/comments",
"statuses_url": "https://api.github.com/repos/XAMPPRocky/octocrab/statuses/d1a0c117a5ef43e7c320fafe6c7a6d02157c9381",
"head": {
"label": "XAMPPRocky:dependabot/cargo/jsonwebtoken-8",
"ref": "dependabot/cargo/jsonwebtoken-8",
"sha": "d1a0c117a5ef43e7c320fafe6c7a6d02157c9381",
"user": {
"login": "XAMPPRocky",
"id": 4464295,
"node_id": "MDQ6VXNlcjQ0NjQyOTU=",
"avatar_url": "https://avatars.githubusercontent.com/u/4464295?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/XAMPPRocky",
"html_url": "https://github.com/XAMPPRocky",
"followers_url": "https://api.github.com/users/XAMPPRocky/followers",
"following_url": "https://api.github.com/users/XAMPPRocky/following{/other_user}",
"gists_url": "https://api.github.com/users/XAMPPRocky/gists{/gist_id}",
"starred_url": "https://api.github.com/users/XAMPPRocky/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/XAMPPRocky/subscriptions",
"organizations_url": "https://api.github.com/users/XAMPPRocky/orgs",
"repos_url": "https://api.github.com/users/XAMPPRocky/repos",
"events_url": "https://api.github.com/users/XAMPPRocky/events{/privacy}",
"received_events_url": "https://api.github.com/users/XAMPPRocky/received_events",
"type": "User",
"site_admin": false
},
"repo": {
"id": 260152030,
"node_id": "MDEwOlJlcG9zaXRvcnkyNjAxNTIwMzA=",
"name": "octocrab",
"full_name": "XAMPPRocky/octocrab",
"private": false,
"owner": {
"login": "XAMPPRocky",
"id": 4464295,
"node_id": "MDQ6VXNlcjQ0NjQyOTU=",
"avatar_url": "https://avatars.githubusercontent.com/u/4464295?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/XAMPPRocky",
"html_url": "https://github.com/XAMPPRocky",
"followers_url": "https://api.github.com/users/XAMPPRocky/followers",
"following_url": "https://api.github.com/users/XAMPPRocky/following{/other_user}",
"gists_url": "https://api.github.com/users/XAMPPRocky/gists{/gist_id}",
"starred_url": "https://api.github.com/users/XAMPPRocky/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/XAMPPRocky/subscriptions",
"organizations_url": "https://api.github.com/users/XAMPPRocky/orgs",
"repos_url": "https://api.github.com/users/XAMPPRocky/repos",
"events_url": "https://api.github.com/users/XAMPPRocky/events{/privacy}",
"received_events_url": "https://api.github.com/users/XAMPPRocky/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/XAMPPRocky/octocrab",
"description": "A modern, extensible GitHub API Client for Rust.",
"fork": false,
"url": "https://api.github.com/repos/XAMPPRocky/octocrab",
"forks_url": "https://api.github.com/repos/XAMPPRocky/octocrab/forks",
"keys_url": "https://api.github.com/repos/XAMPPRocky/octocrab/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/XAMPPRocky/octocrab/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/XAMPPRocky/octocrab/teams",
"hooks_url": "https://api.github.com/repos/XAMPPRocky/octocrab/hooks",
"issue_events_url": "https://api.github.com/repos/XAMPPRocky/octocrab/issues/events{/number}",
"events_url": "https://api.github.com/repos/XAMPPRocky/octocrab/events",
"assignees_url": "https://api.github.com/repos/XAMPPRocky/octocrab/assignees{/user}",
"branches_url": "https://api.github.com/repos/XAMPPRocky/octocrab/branches{/branch}",
"tags_url": "https://api.github.com/repos/XAMPPRocky/octocrab/tags",
"blobs_url": "https://api.github.com/repos/XAMPPRocky/octocrab/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/XAMPPRocky/octocrab/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/XAMPPRocky/octocrab/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/XAMPPRocky/octocrab/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/XAMPPRocky/octocrab/statuses/{sha}",
"languages_url": "https://api.github.com/repos/XAMPPRocky/octocrab/languages",
"stargazers_url": "https://api.github.com/repos/XAMPPRocky/octocrab/stargazers",
"contributors_url": "https://api.github.com/repos/XAMPPRocky/octocrab/contributors",
"subscribers_url": "https://api.github.com/repos/XAMPPRocky/octocrab/subscribers",
"subscription_url": "https://api.github.com/repos/XAMPPRocky/octocrab/subscription",
"commits_url": "https://api.github.com/repos/XAMPPRocky/octocrab/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/XAMPPRocky/octocrab/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/XAMPPRocky/octocrab/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/XAMPPRocky/octocrab/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/XAMPPRocky/octocrab/contents/{+path}",
"compare_url": "https://api.github.com/repos/XAMPPRocky/octocrab/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/XAMPPRocky/octocrab/merges",
"archive_url": "https://api.github.com/repos/XAMPPRocky/octocrab/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/XAMPPRocky/octocrab/downloads",
"issues_url": "https://api.github.com/repos/XAMPPRocky/octocrab/issues{/number}",
"pulls_url": "https://api.github.com/repos/XAMPPRocky/octocrab/pulls{/number}",
"milestones_url": "https://api.github.com/repos/XAMPPRocky/octocrab/milestones{/number}",
"notifications_url": "https://api.github.com/repos/XAMPPRocky/octocrab/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/XAMPPRocky/octocrab/labels{/name}",
"releases_url": "https://api.github.com/repos/XAMPPRocky/octocrab/releases{/id}",
"deployments_url": "https://api.github.com/repos/XAMPPRocky/octocrab/deployments",
"created_at": "2020-04-30T08:13:03Z",
"updated_at": "2022-02-15T18:19:16Z",
"pushed_at": "2022-02-13T05:55:52Z",
"git_url": "git://github.com/XAMPPRocky/octocrab.git",
"ssh_url": "git@github.com:XAMPPRocky/octocrab.git",
"clone_url": "https://github.com/XAMPPRocky/octocrab.git",
"svn_url": "https://github.com/XAMPPRocky/octocrab",
"homepage": "",
"size": 600,
"stargazers_count": 398,
"watchers_count": 398,
"language": "Rust",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 76,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 30,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"allow_forking": true,
"is_template": false,
"topics": [
],
"visibility": "public",
"forks": 76,
"open_issues": 30,
"watchers": 398,
"default_branch": "master"
}
},
"base": {
"label": "XAMPPRocky:master",
"ref": "master",
"sha": "0444a99146a3f84793528306dd8cd3cde0bfb37e",
"user": {
"login": "XAMPPRocky",
"id": 4464295,
"node_id": "MDQ6VXNlcjQ0NjQyOTU=",
"avatar_url": "https://avatars.githubusercontent.com/u/4464295?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/XAMPPRocky",
"html_url": "https://github.com/XAMPPRocky",
"followers_url": "https://api.github.com/users/XAMPPRocky/followers",
"following_url": "https://api.github.com/users/XAMPPRocky/following{/other_user}",
"gists_url": "https://api.github.com/users/XAMPPRocky/gists{/gist_id}",
"starred_url": "https://api.github.com/users/XAMPPRocky/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/XAMPPRocky/subscriptions",
"organizations_url": "https://api.github.com/users/XAMPPRocky/orgs",
"repos_url": "https://api.github.com/users/XAMPPRocky/repos",
"events_url": "https://api.github.com/users/XAMPPRocky/events{/privacy}",
"received_events_url": "https://api.github.com/users/XAMPPRocky/received_events",
"type": "User",
"site_admin": false
},
"repo": {
"id": 260152030,
"node_id": "MDEwOlJlcG9zaXRvcnkyNjAxNTIwMzA=",
"name": "octocrab",
"full_name": "XAMPPRocky/octocrab",
"private": false,
"owner": {
"login": "XAMPPRocky",
"id": 4464295,
"node_id": "MDQ6VXNlcjQ0NjQyOTU=",
"avatar_url": "https://avatars.githubusercontent.com/u/4464295?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/XAMPPRocky",
"html_url": "https://github.com/XAMPPRocky",
"followers_url": "https://api.github.com/users/XAMPPRocky/followers",
"following_url": "https://api.github.com/users/XAMPPRocky/following{/other_user}",
"gists_url": "https://api.github.com/users/XAMPPRocky/gists{/gist_id}",
"starred_url": "https://api.github.com/users/XAMPPRocky/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/XAMPPRocky/subscriptions",
"organizations_url": "https://api.github.com/users/XAMPPRocky/orgs",
"repos_url": "https://api.github.com/users/XAMPPRocky/repos",
"events_url": "https://api.github.com/users/XAMPPRocky/events{/privacy}",
"received_events_url": "https://api.github.com/users/XAMPPRocky/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/XAMPPRocky/octocrab",
"description": "A modern, extensible GitHub API Client for Rust.",
"fork": false,
"url": "https://api.github.com/repos/XAMPPRocky/octocrab",
"forks_url": "https://api.github.com/repos/XAMPPRocky/octocrab/forks",
"keys_url": "https://api.github.com/repos/XAMPPRocky/octocrab/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/XAMPPRocky/octocrab/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/XAMPPRocky/octocrab/teams",
"hooks_url": "https://api.github.com/repos/XAMPPRocky/octocrab/hooks",
"issue_events_url": "https://api.github.com/repos/XAMPPRocky/octocrab/issues/events{/number}",
"events_url": "https://api.github.com/repos/XAMPPRocky/octocrab/events",
"assignees_url": "https://api.github.com/repos/XAMPPRocky/octocrab/assignees{/user}",
"branches_url": "https://api.github.com/repos/XAMPPRocky/octocrab/branches{/branch}",
"tags_url": "https://api.github.com/repos/XAMPPRocky/octocrab/tags",
"blobs_url": "https://api.github.com/repos/XAMPPRocky/octocrab/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/XAMPPRocky/octocrab/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/XAMPPRocky/octocrab/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/XAMPPRocky/octocrab/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/XAMPPRocky/octocrab/statuses/{sha}",
"languages_url": "https://api.github.com/repos/XAMPPRocky/octocrab/languages",
"stargazers_url": "https://api.github.com/repos/XAMPPRocky/octocrab/stargazers",
"contributors_url": "https://api.github.com/repos/XAMPPRocky/octocrab/contributors",
"subscribers_url": "https://api.github.com/repos/XAMPPRocky/octocrab/subscribers",
"subscription_url": "https://api.github.com/repos/XAMPPRocky/octocrab/subscription",
"commits_url": "https://api.github.com/repos/XAMPPRocky/octocrab/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/XAMPPRocky/octocrab/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/XAMPPRocky/octocrab/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/XAMPPRocky/octocrab/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/XAMPPRocky/octocrab/contents/{+path}",
"compare_url": "https://api.github.com/repos/XAMPPRocky/octocrab/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/XAMPPRocky/octocrab/merges",
"archive_url": "https://api.github.com/repos/XAMPPRocky/octocrab/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/XAMPPRocky/octocrab/downloads",
"issues_url": "https://api.github.com/repos/XAMPPRocky/octocrab/issues{/number}",
"pulls_url": "https://api.github.com/repos/XAMPPRocky/octocrab/pulls{/number}",
"milestones_url": "https://api.github.com/repos/XAMPPRocky/octocrab/milestones{/number}",
"notifications_url": "https://api.github.com/repos/XAMPPRocky/octocrab/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/XAMPPRocky/octocrab/labels{/name}",
"releases_url": "https://api.github.com/repos/XAMPPRocky/octocrab/releases{/id}",
"deployments_url": "https://api.github.com/repos/XAMPPRocky/octocrab/deployments",
"created_at": "2020-04-30T08:13:03Z",
"updated_at": "2022-02-15T18:19:16Z",
"pushed_at": "2022-02-13T05:55:52Z",
"git_url": "git://github.com/XAMPPRocky/octocrab.git",
"ssh_url": "git@github.com:XAMPPRocky/octocrab.git",
"clone_url": "https://github.com/XAMPPRocky/octocrab.git",
"svn_url": "https://github.com/XAMPPRocky/octocrab",
"homepage": "",
"size": 600,
"stargazers_count": 398,
"watchers_count": 398,
"language": "Rust",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 76,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 30,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"allow_forking": true,
"is_template": false,
"topics": [
],
"visibility": "public",
"forks": 76,
"open_issues": 30,
"watchers": 398,
"default_branch": "master"
}
},
"_links": {
"self": {
"href": "https://api.github.com/repos/XAMPPRocky/octocrab/pulls/191"
},
"html": {
"href": "https://github.com/XAMPPRocky/octocrab/pull/191"
},
"issue": {
"href": "https://api.github.com/repos/XAMPPRocky/octocrab/issues/191"
},
"comments": {
"href": "https://api.github.com/repos/XAMPPRocky/octocrab/issues/191/comments"
},
"review_comments": {
"href": "https://api.github.com/repos/XAMPPRocky/octocrab/pulls/191/comments"
},
"review_comment": {
"href": "https://api.github.com/repos/XAMPPRocky/octocrab/pulls/comments{/number}"
},
"commits": {
"href": "https://api.github.com/repos/XAMPPRocky/octocrab/pulls/191/commits"
},
"statuses": {
"href": "https://api.github.com/repos/XAMPPRocky/octocrab/statuses/d1a0c117a5ef43e7c320fafe6c7a6d02157c9381"
}
},
"author_association": "NONE",
"auto_merge": null,
"active_lock_reason": null,
"merged": false,
"mergeable": true,
"rebaseable": true,
"mergeable_state": "unstable",
"merged_by": null,
"comments": 0,
"review_comments": 0,
"maintainer_can_modify": false,
"commits": 1,
"additions": 1,
"deletions": 1,
"changed_files": 1
}