generated from emilk/eframe_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.json
More file actions
1174 lines (1174 loc) · 60.4 KB
/
sample.json
File metadata and controls
1174 lines (1174 loc) · 60.4 KB
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"total_count": 867178,
"incomplete_results": false,
"items": [
{
"id": 724712,
"node_id": "MDEwOlJlcG9zaXRvcnk3MjQ3MTI=",
"name": "rust",
"full_name": "rust-lang/rust",
"private": false,
"owner": {
"login": "rust-lang",
"id": 5430905,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjU0MzA5MDU=",
"avatar_url": "https://avatars.githubusercontent.com/u/5430905?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rust-lang",
"html_url": "https://github.com/rust-lang",
"followers_url": "https://api.github.com/users/rust-lang/followers",
"following_url": "https://api.github.com/users/rust-lang/following{/other_user}",
"gists_url": "https://api.github.com/users/rust-lang/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rust-lang/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rust-lang/subscriptions",
"organizations_url": "https://api.github.com/users/rust-lang/orgs",
"repos_url": "https://api.github.com/users/rust-lang/repos",
"events_url": "https://api.github.com/users/rust-lang/events{/privacy}",
"received_events_url": "https://api.github.com/users/rust-lang/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/rust-lang/rust",
"description": "Empowering everyone to build reliable and efficient software.",
"fork": false,
"url": "https://api.github.com/repos/rust-lang/rust",
"forks_url": "https://api.github.com/repos/rust-lang/rust/forks",
"keys_url": "https://api.github.com/repos/rust-lang/rust/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/rust-lang/rust/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/rust-lang/rust/teams",
"hooks_url": "https://api.github.com/repos/rust-lang/rust/hooks",
"issue_events_url": "https://api.github.com/repos/rust-lang/rust/issues/events{/number}",
"events_url": "https://api.github.com/repos/rust-lang/rust/events",
"assignees_url": "https://api.github.com/repos/rust-lang/rust/assignees{/user}",
"branches_url": "https://api.github.com/repos/rust-lang/rust/branches{/branch}",
"tags_url": "https://api.github.com/repos/rust-lang/rust/tags",
"blobs_url": "https://api.github.com/repos/rust-lang/rust/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/rust-lang/rust/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/rust-lang/rust/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/rust-lang/rust/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/rust-lang/rust/statuses/{sha}",
"languages_url": "https://api.github.com/repos/rust-lang/rust/languages",
"stargazers_url": "https://api.github.com/repos/rust-lang/rust/stargazers",
"contributors_url": "https://api.github.com/repos/rust-lang/rust/contributors",
"subscribers_url": "https://api.github.com/repos/rust-lang/rust/subscribers",
"subscription_url": "https://api.github.com/repos/rust-lang/rust/subscription",
"commits_url": "https://api.github.com/repos/rust-lang/rust/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/rust-lang/rust/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/rust-lang/rust/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/rust-lang/rust/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/rust-lang/rust/contents/{+path}",
"compare_url": "https://api.github.com/repos/rust-lang/rust/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/rust-lang/rust/merges",
"archive_url": "https://api.github.com/repos/rust-lang/rust/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/rust-lang/rust/downloads",
"issues_url": "https://api.github.com/repos/rust-lang/rust/issues{/number}",
"pulls_url": "https://api.github.com/repos/rust-lang/rust/pulls{/number}",
"milestones_url": "https://api.github.com/repos/rust-lang/rust/milestones{/number}",
"notifications_url": "https://api.github.com/repos/rust-lang/rust/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/rust-lang/rust/labels{/name}",
"releases_url": "https://api.github.com/repos/rust-lang/rust/releases{/id}",
"deployments_url": "https://api.github.com/repos/rust-lang/rust/deployments",
"created_at": "2010-06-16T20:39:03Z",
"updated_at": "2025-06-10T15:31:50Z",
"pushed_at": "2025-06-10T15:57:00Z",
"git_url": "git://github.com/rust-lang/rust.git",
"ssh_url": "git@github.com:rust-lang/rust.git",
"clone_url": "https://github.com/rust-lang/rust.git",
"svn_url": "https://github.com/rust-lang/rust",
"homepage": "https://www.rust-lang.org",
"size": 682817,
"stargazers_count": 104211,
"watchers_count": 104211,
"language": "Rust",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"has_discussions": false,
"forks_count": 13425,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 11202,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"compiler",
"hacktoberfest",
"language",
"rust"
],
"visibility": "public",
"forks": 13425,
"open_issues": 11202,
"watchers": 104211,
"default_branch": "master",
"score": 1
},
{
"id": 133442384,
"node_id": "MDEwOlJlcG9zaXRvcnkxMzM0NDIzODQ=",
"name": "deno",
"full_name": "denoland/deno",
"private": false,
"owner": {
"login": "denoland",
"id": 42048915,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjQyMDQ4OTE1",
"avatar_url": "https://avatars.githubusercontent.com/u/42048915?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/denoland",
"html_url": "https://github.com/denoland",
"followers_url": "https://api.github.com/users/denoland/followers",
"following_url": "https://api.github.com/users/denoland/following{/other_user}",
"gists_url": "https://api.github.com/users/denoland/gists{/gist_id}",
"starred_url": "https://api.github.com/users/denoland/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/denoland/subscriptions",
"organizations_url": "https://api.github.com/users/denoland/orgs",
"repos_url": "https://api.github.com/users/denoland/repos",
"events_url": "https://api.github.com/users/denoland/events{/privacy}",
"received_events_url": "https://api.github.com/users/denoland/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/denoland/deno",
"description": "A modern runtime for JavaScript and TypeScript.",
"fork": false,
"url": "https://api.github.com/repos/denoland/deno",
"forks_url": "https://api.github.com/repos/denoland/deno/forks",
"keys_url": "https://api.github.com/repos/denoland/deno/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/denoland/deno/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/denoland/deno/teams",
"hooks_url": "https://api.github.com/repos/denoland/deno/hooks",
"issue_events_url": "https://api.github.com/repos/denoland/deno/issues/events{/number}",
"events_url": "https://api.github.com/repos/denoland/deno/events",
"assignees_url": "https://api.github.com/repos/denoland/deno/assignees{/user}",
"branches_url": "https://api.github.com/repos/denoland/deno/branches{/branch}",
"tags_url": "https://api.github.com/repos/denoland/deno/tags",
"blobs_url": "https://api.github.com/repos/denoland/deno/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/denoland/deno/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/denoland/deno/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/denoland/deno/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/denoland/deno/statuses/{sha}",
"languages_url": "https://api.github.com/repos/denoland/deno/languages",
"stargazers_url": "https://api.github.com/repos/denoland/deno/stargazers",
"contributors_url": "https://api.github.com/repos/denoland/deno/contributors",
"subscribers_url": "https://api.github.com/repos/denoland/deno/subscribers",
"subscription_url": "https://api.github.com/repos/denoland/deno/subscription",
"commits_url": "https://api.github.com/repos/denoland/deno/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/denoland/deno/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/denoland/deno/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/denoland/deno/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/denoland/deno/contents/{+path}",
"compare_url": "https://api.github.com/repos/denoland/deno/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/denoland/deno/merges",
"archive_url": "https://api.github.com/repos/denoland/deno/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/denoland/deno/downloads",
"issues_url": "https://api.github.com/repos/denoland/deno/issues{/number}",
"pulls_url": "https://api.github.com/repos/denoland/deno/pulls{/number}",
"milestones_url": "https://api.github.com/repos/denoland/deno/milestones{/number}",
"notifications_url": "https://api.github.com/repos/denoland/deno/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/denoland/deno/labels{/name}",
"releases_url": "https://api.github.com/repos/denoland/deno/releases{/id}",
"deployments_url": "https://api.github.com/repos/denoland/deno/deployments",
"created_at": "2018-05-15T01:34:26Z",
"updated_at": "2025-06-10T15:53:58Z",
"pushed_at": "2025-06-10T15:44:32Z",
"git_url": "git://github.com/denoland/deno.git",
"ssh_url": "git@github.com:denoland/deno.git",
"clone_url": "https://github.com/denoland/deno.git",
"svn_url": "https://github.com/denoland/deno",
"homepage": "https://deno.com",
"size": 174465,
"stargazers_count": 103273,
"watchers_count": 103273,
"language": "Rust",
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": true,
"forks_count": 5620,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 2217,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": true,
"topics": [
"deno",
"javascript",
"rust",
"typescript"
],
"visibility": "public",
"forks": 5620,
"open_issues": 2217,
"watchers": 103273,
"default_branch": "main",
"score": 1
},
{
"id": 196701619,
"node_id": "MDEwOlJlcG9zaXRvcnkxOTY3MDE2MTk=",
"name": "tauri",
"full_name": "tauri-apps/tauri",
"private": false,
"owner": {
"login": "tauri-apps",
"id": 54536011,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjU0NTM2MDEx",
"avatar_url": "https://avatars.githubusercontent.com/u/54536011?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tauri-apps",
"html_url": "https://github.com/tauri-apps",
"followers_url": "https://api.github.com/users/tauri-apps/followers",
"following_url": "https://api.github.com/users/tauri-apps/following{/other_user}",
"gists_url": "https://api.github.com/users/tauri-apps/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tauri-apps/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tauri-apps/subscriptions",
"organizations_url": "https://api.github.com/users/tauri-apps/orgs",
"repos_url": "https://api.github.com/users/tauri-apps/repos",
"events_url": "https://api.github.com/users/tauri-apps/events{/privacy}",
"received_events_url": "https://api.github.com/users/tauri-apps/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/tauri-apps/tauri",
"description": "Build smaller, faster, and more secure desktop and mobile applications with a web frontend.",
"fork": false,
"url": "https://api.github.com/repos/tauri-apps/tauri",
"forks_url": "https://api.github.com/repos/tauri-apps/tauri/forks",
"keys_url": "https://api.github.com/repos/tauri-apps/tauri/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/tauri-apps/tauri/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/tauri-apps/tauri/teams",
"hooks_url": "https://api.github.com/repos/tauri-apps/tauri/hooks",
"issue_events_url": "https://api.github.com/repos/tauri-apps/tauri/issues/events{/number}",
"events_url": "https://api.github.com/repos/tauri-apps/tauri/events",
"assignees_url": "https://api.github.com/repos/tauri-apps/tauri/assignees{/user}",
"branches_url": "https://api.github.com/repos/tauri-apps/tauri/branches{/branch}",
"tags_url": "https://api.github.com/repos/tauri-apps/tauri/tags",
"blobs_url": "https://api.github.com/repos/tauri-apps/tauri/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/tauri-apps/tauri/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/tauri-apps/tauri/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/tauri-apps/tauri/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/tauri-apps/tauri/statuses/{sha}",
"languages_url": "https://api.github.com/repos/tauri-apps/tauri/languages",
"stargazers_url": "https://api.github.com/repos/tauri-apps/tauri/stargazers",
"contributors_url": "https://api.github.com/repos/tauri-apps/tauri/contributors",
"subscribers_url": "https://api.github.com/repos/tauri-apps/tauri/subscribers",
"subscription_url": "https://api.github.com/repos/tauri-apps/tauri/subscription",
"commits_url": "https://api.github.com/repos/tauri-apps/tauri/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/tauri-apps/tauri/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/tauri-apps/tauri/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/tauri-apps/tauri/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/tauri-apps/tauri/contents/{+path}",
"compare_url": "https://api.github.com/repos/tauri-apps/tauri/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/tauri-apps/tauri/merges",
"archive_url": "https://api.github.com/repos/tauri-apps/tauri/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/tauri-apps/tauri/downloads",
"issues_url": "https://api.github.com/repos/tauri-apps/tauri/issues{/number}",
"pulls_url": "https://api.github.com/repos/tauri-apps/tauri/pulls{/number}",
"milestones_url": "https://api.github.com/repos/tauri-apps/tauri/milestones{/number}",
"notifications_url": "https://api.github.com/repos/tauri-apps/tauri/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/tauri-apps/tauri/labels{/name}",
"releases_url": "https://api.github.com/repos/tauri-apps/tauri/releases{/id}",
"deployments_url": "https://api.github.com/repos/tauri-apps/tauri/deployments",
"created_at": "2019-07-13T09:09:37Z",
"updated_at": "2025-06-10T15:13:38Z",
"pushed_at": "2025-06-10T04:42:35Z",
"git_url": "git://github.com/tauri-apps/tauri.git",
"ssh_url": "git@github.com:tauri-apps/tauri.git",
"clone_url": "https://github.com/tauri-apps/tauri.git",
"svn_url": "https://github.com/tauri-apps/tauri",
"homepage": "https://tauri.app",
"size": 96452,
"stargazers_count": 93363,
"watchers_count": 93363,
"language": "Rust",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"has_discussions": true,
"forks_count": 2888,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 1137,
"license": {
"key": "apache-2.0",
"name": "Apache License 2.0",
"spdx_id": "Apache-2.0",
"url": "https://api.github.com/licenses/apache-2.0",
"node_id": "MDc6TGljZW5zZTI="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"desktop-app",
"high-performance",
"mobile-app",
"native-app",
"rust",
"web-frontend",
"webview"
],
"visibility": "public",
"forks": 2888,
"open_issues": 1137,
"watchers": 93363,
"default_branch": "dev",
"score": 1
},
{
"id": 299354207,
"node_id": "MDEwOlJlcG9zaXRvcnkyOTkzNTQyMDc=",
"name": "rustdesk",
"full_name": "rustdesk/rustdesk",
"private": false,
"owner": {
"login": "rustdesk",
"id": 71636191,
"node_id": "MDQ6VXNlcjcxNjM2MTkx",
"avatar_url": "https://avatars.githubusercontent.com/u/71636191?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rustdesk",
"html_url": "https://github.com/rustdesk",
"followers_url": "https://api.github.com/users/rustdesk/followers",
"following_url": "https://api.github.com/users/rustdesk/following{/other_user}",
"gists_url": "https://api.github.com/users/rustdesk/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rustdesk/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rustdesk/subscriptions",
"organizations_url": "https://api.github.com/users/rustdesk/orgs",
"repos_url": "https://api.github.com/users/rustdesk/repos",
"events_url": "https://api.github.com/users/rustdesk/events{/privacy}",
"received_events_url": "https://api.github.com/users/rustdesk/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/rustdesk/rustdesk",
"description": "An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer.",
"fork": false,
"url": "https://api.github.com/repos/rustdesk/rustdesk",
"forks_url": "https://api.github.com/repos/rustdesk/rustdesk/forks",
"keys_url": "https://api.github.com/repos/rustdesk/rustdesk/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/rustdesk/rustdesk/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/rustdesk/rustdesk/teams",
"hooks_url": "https://api.github.com/repos/rustdesk/rustdesk/hooks",
"issue_events_url": "https://api.github.com/repos/rustdesk/rustdesk/issues/events{/number}",
"events_url": "https://api.github.com/repos/rustdesk/rustdesk/events",
"assignees_url": "https://api.github.com/repos/rustdesk/rustdesk/assignees{/user}",
"branches_url": "https://api.github.com/repos/rustdesk/rustdesk/branches{/branch}",
"tags_url": "https://api.github.com/repos/rustdesk/rustdesk/tags",
"blobs_url": "https://api.github.com/repos/rustdesk/rustdesk/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/rustdesk/rustdesk/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/rustdesk/rustdesk/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/rustdesk/rustdesk/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/rustdesk/rustdesk/statuses/{sha}",
"languages_url": "https://api.github.com/repos/rustdesk/rustdesk/languages",
"stargazers_url": "https://api.github.com/repos/rustdesk/rustdesk/stargazers",
"contributors_url": "https://api.github.com/repos/rustdesk/rustdesk/contributors",
"subscribers_url": "https://api.github.com/repos/rustdesk/rustdesk/subscribers",
"subscription_url": "https://api.github.com/repos/rustdesk/rustdesk/subscription",
"commits_url": "https://api.github.com/repos/rustdesk/rustdesk/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/rustdesk/rustdesk/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/rustdesk/rustdesk/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/rustdesk/rustdesk/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/rustdesk/rustdesk/contents/{+path}",
"compare_url": "https://api.github.com/repos/rustdesk/rustdesk/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/rustdesk/rustdesk/merges",
"archive_url": "https://api.github.com/repos/rustdesk/rustdesk/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/rustdesk/rustdesk/downloads",
"issues_url": "https://api.github.com/repos/rustdesk/rustdesk/issues{/number}",
"pulls_url": "https://api.github.com/repos/rustdesk/rustdesk/pulls{/number}",
"milestones_url": "https://api.github.com/repos/rustdesk/rustdesk/milestones{/number}",
"notifications_url": "https://api.github.com/repos/rustdesk/rustdesk/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/rustdesk/rustdesk/labels{/name}",
"releases_url": "https://api.github.com/repos/rustdesk/rustdesk/releases{/id}",
"deployments_url": "https://api.github.com/repos/rustdesk/rustdesk/deployments",
"created_at": "2020-09-28T15:36:08Z",
"updated_at": "2025-06-10T15:23:06Z",
"pushed_at": "2025-06-10T14:01:47Z",
"git_url": "git://github.com/rustdesk/rustdesk.git",
"ssh_url": "git@github.com:rustdesk/rustdesk.git",
"clone_url": "https://github.com/rustdesk/rustdesk.git",
"svn_url": "https://github.com/rustdesk/rustdesk",
"homepage": "https://rustdesk.com",
"size": 59115,
"stargazers_count": 90348,
"watchers_count": 90348,
"language": "Rust",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": true,
"forks_count": 12966,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 63,
"license": {
"key": "agpl-3.0",
"name": "GNU Affero General Public License v3.0",
"spdx_id": "AGPL-3.0",
"url": "https://api.github.com/licenses/agpl-3.0",
"node_id": "MDc6TGljZW5zZTE="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"anydesk",
"dart",
"flutter",
"flutter-apps",
"flutter-desktop",
"flutter-examples",
"flutter-mobile",
"flutter-ui",
"flutter-web",
"hacktoberfest",
"linux",
"p2p",
"rdp",
"remote-control",
"remote-desktop",
"rust",
"rust-lang",
"teamviewer",
"vnc",
"wayland"
],
"visibility": "public",
"forks": 12966,
"open_issues": 63,
"watchers": 90348,
"default_branch": "master",
"score": 1
},
{
"id": 641656392,
"node_id": "R_kgDOJj7mSA",
"name": "union",
"full_name": "unionlabs/union",
"private": false,
"owner": {
"login": "unionlabs",
"id": 129756567,
"node_id": "O_kgDOB7vtlw",
"avatar_url": "https://avatars.githubusercontent.com/u/129756567?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/unionlabs",
"html_url": "https://github.com/unionlabs",
"followers_url": "https://api.github.com/users/unionlabs/followers",
"following_url": "https://api.github.com/users/unionlabs/following{/other_user}",
"gists_url": "https://api.github.com/users/unionlabs/gists{/gist_id}",
"starred_url": "https://api.github.com/users/unionlabs/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/unionlabs/subscriptions",
"organizations_url": "https://api.github.com/users/unionlabs/orgs",
"repos_url": "https://api.github.com/users/unionlabs/repos",
"events_url": "https://api.github.com/users/unionlabs/events{/privacy}",
"received_events_url": "https://api.github.com/users/unionlabs/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/unionlabs/union",
"description": "The trust-minimized, zero-knowledge bridging protocol, designed for censorship resistance, extremely high security, and usage in decentralized finance.",
"fork": false,
"url": "https://api.github.com/repos/unionlabs/union",
"forks_url": "https://api.github.com/repos/unionlabs/union/forks",
"keys_url": "https://api.github.com/repos/unionlabs/union/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/unionlabs/union/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/unionlabs/union/teams",
"hooks_url": "https://api.github.com/repos/unionlabs/union/hooks",
"issue_events_url": "https://api.github.com/repos/unionlabs/union/issues/events{/number}",
"events_url": "https://api.github.com/repos/unionlabs/union/events",
"assignees_url": "https://api.github.com/repos/unionlabs/union/assignees{/user}",
"branches_url": "https://api.github.com/repos/unionlabs/union/branches{/branch}",
"tags_url": "https://api.github.com/repos/unionlabs/union/tags",
"blobs_url": "https://api.github.com/repos/unionlabs/union/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/unionlabs/union/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/unionlabs/union/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/unionlabs/union/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/unionlabs/union/statuses/{sha}",
"languages_url": "https://api.github.com/repos/unionlabs/union/languages",
"stargazers_url": "https://api.github.com/repos/unionlabs/union/stargazers",
"contributors_url": "https://api.github.com/repos/unionlabs/union/contributors",
"subscribers_url": "https://api.github.com/repos/unionlabs/union/subscribers",
"subscription_url": "https://api.github.com/repos/unionlabs/union/subscription",
"commits_url": "https://api.github.com/repos/unionlabs/union/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/unionlabs/union/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/unionlabs/union/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/unionlabs/union/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/unionlabs/union/contents/{+path}",
"compare_url": "https://api.github.com/repos/unionlabs/union/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/unionlabs/union/merges",
"archive_url": "https://api.github.com/repos/unionlabs/union/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/unionlabs/union/downloads",
"issues_url": "https://api.github.com/repos/unionlabs/union/issues{/number}",
"pulls_url": "https://api.github.com/repos/unionlabs/union/pulls{/number}",
"milestones_url": "https://api.github.com/repos/unionlabs/union/milestones{/number}",
"notifications_url": "https://api.github.com/repos/unionlabs/union/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/unionlabs/union/labels{/name}",
"releases_url": "https://api.github.com/repos/unionlabs/union/releases{/id}",
"deployments_url": "https://api.github.com/repos/unionlabs/union/deployments",
"created_at": "2023-05-16T22:33:39Z",
"updated_at": "2025-06-10T16:04:36Z",
"pushed_at": "2025-06-10T11:12:27Z",
"git_url": "git://github.com/unionlabs/union.git",
"ssh_url": "git@github.com:unionlabs/union.git",
"clone_url": "https://github.com/unionlabs/union.git",
"svn_url": "https://github.com/unionlabs/union",
"homepage": "https://union.build",
"size": 467638,
"stargazers_count": 66878,
"watchers_count": 66878,
"language": "Rust",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": true,
"forks_count": 3238,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 292,
"license": {
"key": "apache-2.0",
"name": "Apache License 2.0",
"spdx_id": "Apache-2.0",
"url": "https://api.github.com/licenses/apache-2.0",
"node_id": "MDc6TGljZW5zZTI="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"astro",
"blockchain",
"bridge",
"cosmos",
"cosmwasm",
"ethereum",
"evm",
"golang",
"indexer",
"move",
"nix",
"prover",
"relayer",
"rust",
"solidity",
"svelte",
"typescipt",
"typescript",
"zero-knowledge"
],
"visibility": "public",
"forks": 3238,
"open_issues": 292,
"watchers": 66878,
"default_branch": "main",
"score": 1
},
{
"id": 331107018,
"node_id": "MDEwOlJlcG9zaXRvcnkzMzExMDcwMTg=",
"name": "sway",
"full_name": "FuelLabs/sway",
"private": false,
"owner": {
"login": "FuelLabs",
"id": 55993183,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjU1OTkzMTgz",
"avatar_url": "https://avatars.githubusercontent.com/u/55993183?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/FuelLabs",
"html_url": "https://github.com/FuelLabs",
"followers_url": "https://api.github.com/users/FuelLabs/followers",
"following_url": "https://api.github.com/users/FuelLabs/following{/other_user}",
"gists_url": "https://api.github.com/users/FuelLabs/gists{/gist_id}",
"starred_url": "https://api.github.com/users/FuelLabs/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/FuelLabs/subscriptions",
"organizations_url": "https://api.github.com/users/FuelLabs/orgs",
"repos_url": "https://api.github.com/users/FuelLabs/repos",
"events_url": "https://api.github.com/users/FuelLabs/events{/privacy}",
"received_events_url": "https://api.github.com/users/FuelLabs/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/FuelLabs/sway",
"description": "🌴 Empowering everyone to build reliable and efficient smart contracts.",
"fork": false,
"url": "https://api.github.com/repos/FuelLabs/sway",
"forks_url": "https://api.github.com/repos/FuelLabs/sway/forks",
"keys_url": "https://api.github.com/repos/FuelLabs/sway/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/FuelLabs/sway/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/FuelLabs/sway/teams",
"hooks_url": "https://api.github.com/repos/FuelLabs/sway/hooks",
"issue_events_url": "https://api.github.com/repos/FuelLabs/sway/issues/events{/number}",
"events_url": "https://api.github.com/repos/FuelLabs/sway/events",
"assignees_url": "https://api.github.com/repos/FuelLabs/sway/assignees{/user}",
"branches_url": "https://api.github.com/repos/FuelLabs/sway/branches{/branch}",
"tags_url": "https://api.github.com/repos/FuelLabs/sway/tags",
"blobs_url": "https://api.github.com/repos/FuelLabs/sway/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/FuelLabs/sway/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/FuelLabs/sway/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/FuelLabs/sway/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/FuelLabs/sway/statuses/{sha}",
"languages_url": "https://api.github.com/repos/FuelLabs/sway/languages",
"stargazers_url": "https://api.github.com/repos/FuelLabs/sway/stargazers",
"contributors_url": "https://api.github.com/repos/FuelLabs/sway/contributors",
"subscribers_url": "https://api.github.com/repos/FuelLabs/sway/subscribers",
"subscription_url": "https://api.github.com/repos/FuelLabs/sway/subscription",
"commits_url": "https://api.github.com/repos/FuelLabs/sway/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/FuelLabs/sway/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/FuelLabs/sway/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/FuelLabs/sway/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/FuelLabs/sway/contents/{+path}",
"compare_url": "https://api.github.com/repos/FuelLabs/sway/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/FuelLabs/sway/merges",
"archive_url": "https://api.github.com/repos/FuelLabs/sway/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/FuelLabs/sway/downloads",
"issues_url": "https://api.github.com/repos/FuelLabs/sway/issues{/number}",
"pulls_url": "https://api.github.com/repos/FuelLabs/sway/pulls{/number}",
"milestones_url": "https://api.github.com/repos/FuelLabs/sway/milestones{/number}",
"notifications_url": "https://api.github.com/repos/FuelLabs/sway/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/FuelLabs/sway/labels{/name}",
"releases_url": "https://api.github.com/repos/FuelLabs/sway/releases{/id}",
"deployments_url": "https://api.github.com/repos/FuelLabs/sway/deployments",
"created_at": "2021-01-19T20:54:33Z",
"updated_at": "2025-06-10T09:33:22Z",
"pushed_at": "2025-06-10T11:21:14Z",
"git_url": "git://github.com/FuelLabs/sway.git",
"ssh_url": "git@github.com:FuelLabs/sway.git",
"clone_url": "https://github.com/FuelLabs/sway.git",
"svn_url": "https://github.com/FuelLabs/sway",
"homepage": "https://docs.fuel.network/docs/sway/",
"size": 98645,
"stargazers_count": 62241,
"watchers_count": 62241,
"language": "Rust",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": true,
"has_discussions": true,
"forks_count": 5405,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 871,
"license": {
"key": "apache-2.0",
"name": "Apache License 2.0",
"spdx_id": "Apache-2.0",
"url": "https://api.github.com/licenses/apache-2.0",
"node_id": "MDc6TGljZW5zZTI="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"compiler",
"fuel",
"language",
"sway"
],
"visibility": "public",
"forks": 5405,
"open_issues": 871,
"watchers": 62241,
"default_branch": "master",
"score": 1
},
{
"id": 340547520,
"node_id": "MDEwOlJlcG9zaXRvcnkzNDA1NDc1MjA=",
"name": "zed",
"full_name": "zed-industries/zed",
"private": false,
"owner": {
"login": "zed-industries",
"id": 79345384,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc5MzQ1Mzg0",
"avatar_url": "https://avatars.githubusercontent.com/u/79345384?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zed-industries",
"html_url": "https://github.com/zed-industries",
"followers_url": "https://api.github.com/users/zed-industries/followers",
"following_url": "https://api.github.com/users/zed-industries/following{/other_user}",
"gists_url": "https://api.github.com/users/zed-industries/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zed-industries/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zed-industries/subscriptions",
"organizations_url": "https://api.github.com/users/zed-industries/orgs",
"repos_url": "https://api.github.com/users/zed-industries/repos",
"events_url": "https://api.github.com/users/zed-industries/events{/privacy}",
"received_events_url": "https://api.github.com/users/zed-industries/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/zed-industries/zed",
"description": "Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.",
"fork": false,
"url": "https://api.github.com/repos/zed-industries/zed",
"forks_url": "https://api.github.com/repos/zed-industries/zed/forks",
"keys_url": "https://api.github.com/repos/zed-industries/zed/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/zed-industries/zed/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/zed-industries/zed/teams",
"hooks_url": "https://api.github.com/repos/zed-industries/zed/hooks",
"issue_events_url": "https://api.github.com/repos/zed-industries/zed/issues/events{/number}",
"events_url": "https://api.github.com/repos/zed-industries/zed/events",
"assignees_url": "https://api.github.com/repos/zed-industries/zed/assignees{/user}",
"branches_url": "https://api.github.com/repos/zed-industries/zed/branches{/branch}",
"tags_url": "https://api.github.com/repos/zed-industries/zed/tags",
"blobs_url": "https://api.github.com/repos/zed-industries/zed/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/zed-industries/zed/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/zed-industries/zed/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/zed-industries/zed/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/zed-industries/zed/statuses/{sha}",
"languages_url": "https://api.github.com/repos/zed-industries/zed/languages",
"stargazers_url": "https://api.github.com/repos/zed-industries/zed/stargazers",
"contributors_url": "https://api.github.com/repos/zed-industries/zed/contributors",
"subscribers_url": "https://api.github.com/repos/zed-industries/zed/subscribers",
"subscription_url": "https://api.github.com/repos/zed-industries/zed/subscription",
"commits_url": "https://api.github.com/repos/zed-industries/zed/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/zed-industries/zed/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/zed-industries/zed/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/zed-industries/zed/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/zed-industries/zed/contents/{+path}",
"compare_url": "https://api.github.com/repos/zed-industries/zed/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/zed-industries/zed/merges",
"archive_url": "https://api.github.com/repos/zed-industries/zed/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/zed-industries/zed/downloads",
"issues_url": "https://api.github.com/repos/zed-industries/zed/issues{/number}",
"pulls_url": "https://api.github.com/repos/zed-industries/zed/pulls{/number}",
"milestones_url": "https://api.github.com/repos/zed-industries/zed/milestones{/number}",
"notifications_url": "https://api.github.com/repos/zed-industries/zed/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/zed-industries/zed/labels{/name}",
"releases_url": "https://api.github.com/repos/zed-industries/zed/releases{/id}",
"deployments_url": "https://api.github.com/repos/zed-industries/zed/deployments",
"created_at": "2021-02-20T03:01:06Z",
"updated_at": "2025-06-10T16:00:47Z",
"pushed_at": "2025-06-10T16:00:42Z",
"git_url": "git://github.com/zed-industries/zed.git",
"ssh_url": "git@github.com:zed-industries/zed.git",
"clone_url": "https://github.com/zed-industries/zed.git",
"svn_url": "https://github.com/zed-industries/zed",
"homepage": "https://zed.dev",
"size": 212311,
"stargazers_count": 61157,
"watchers_count": 61157,
"language": "Rust",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"has_discussions": true,
"forks_count": 4456,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 2644,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"gpui",
"rust-lang",
"text-editor",
"zed"
],
"visibility": "public",
"forks": 4456,
"open_issues": 2644,
"watchers": 61157,
"default_branch": "main",
"score": 1
},
{
"id": 51980455,
"node_id": "MDEwOlJlcG9zaXRvcnk1MTk4MDQ1NQ==",
"name": "alacritty",
"full_name": "alacritty/alacritty",
"private": false,
"owner": {
"login": "alacritty",
"id": 29714349,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjI5NzE0MzQ5",
"avatar_url": "https://avatars.githubusercontent.com/u/29714349?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alacritty",
"html_url": "https://github.com/alacritty",
"followers_url": "https://api.github.com/users/alacritty/followers",
"following_url": "https://api.github.com/users/alacritty/following{/other_user}",
"gists_url": "https://api.github.com/users/alacritty/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alacritty/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alacritty/subscriptions",
"organizations_url": "https://api.github.com/users/alacritty/orgs",
"repos_url": "https://api.github.com/users/alacritty/repos",
"events_url": "https://api.github.com/users/alacritty/events{/privacy}",
"received_events_url": "https://api.github.com/users/alacritty/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/alacritty/alacritty",
"description": "A cross-platform, OpenGL terminal emulator.",
"fork": false,
"url": "https://api.github.com/repos/alacritty/alacritty",
"forks_url": "https://api.github.com/repos/alacritty/alacritty/forks",
"keys_url": "https://api.github.com/repos/alacritty/alacritty/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/alacritty/alacritty/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/alacritty/alacritty/teams",
"hooks_url": "https://api.github.com/repos/alacritty/alacritty/hooks",
"issue_events_url": "https://api.github.com/repos/alacritty/alacritty/issues/events{/number}",
"events_url": "https://api.github.com/repos/alacritty/alacritty/events",
"assignees_url": "https://api.github.com/repos/alacritty/alacritty/assignees{/user}",
"branches_url": "https://api.github.com/repos/alacritty/alacritty/branches{/branch}",
"tags_url": "https://api.github.com/repos/alacritty/alacritty/tags",
"blobs_url": "https://api.github.com/repos/alacritty/alacritty/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/alacritty/alacritty/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/alacritty/alacritty/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/alacritty/alacritty/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/alacritty/alacritty/statuses/{sha}",
"languages_url": "https://api.github.com/repos/alacritty/alacritty/languages",
"stargazers_url": "https://api.github.com/repos/alacritty/alacritty/stargazers",
"contributors_url": "https://api.github.com/repos/alacritty/alacritty/contributors",
"subscribers_url": "https://api.github.com/repos/alacritty/alacritty/subscribers",
"subscription_url": "https://api.github.com/repos/alacritty/alacritty/subscription",
"commits_url": "https://api.github.com/repos/alacritty/alacritty/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/alacritty/alacritty/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/alacritty/alacritty/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/alacritty/alacritty/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/alacritty/alacritty/contents/{+path}",
"compare_url": "https://api.github.com/repos/alacritty/alacritty/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/alacritty/alacritty/merges",
"archive_url": "https://api.github.com/repos/alacritty/alacritty/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/alacritty/alacritty/downloads",
"issues_url": "https://api.github.com/repos/alacritty/alacritty/issues{/number}",
"pulls_url": "https://api.github.com/repos/alacritty/alacritty/pulls{/number}",
"milestones_url": "https://api.github.com/repos/alacritty/alacritty/milestones{/number}",
"notifications_url": "https://api.github.com/repos/alacritty/alacritty/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/alacritty/alacritty/labels{/name}",
"releases_url": "https://api.github.com/repos/alacritty/alacritty/releases{/id}",
"deployments_url": "https://api.github.com/repos/alacritty/alacritty/deployments",
"created_at": "2016-02-18T05:02:30Z",
"updated_at": "2025-06-10T14:59:39Z",
"pushed_at": "2025-05-31T01:29:24Z",
"git_url": "git://github.com/alacritty/alacritty.git",
"ssh_url": "git@github.com:alacritty/alacritty.git",
"clone_url": "https://github.com/alacritty/alacritty.git",
"svn_url": "https://github.com/alacritty/alacritty",
"homepage": "https://alacritty.org",
"size": 14002,
"stargazers_count": 59121,
"watchers_count": 59121,
"language": "Rust",
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 3122,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 333,
"license": {
"key": "apache-2.0",
"name": "Apache License 2.0",
"spdx_id": "Apache-2.0",
"url": "https://api.github.com/licenses/apache-2.0",
"node_id": "MDc6TGljZW5zZTI="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"bsd",
"gpu",
"linux",
"macos",
"opengl",
"rust",
"terminal",
"terminal-emulators",
"vte",
"windows"
],
"visibility": "public",
"forks": 3122,
"open_issues": 333,
"watchers": 59121,
"default_branch": "master",
"score": 1
},
{
"id": 42489829,
"node_id": "MDEwOlJlcG9zaXRvcnk0MjQ4OTgyOQ==",
"name": "rustlings",
"full_name": "rust-lang/rustlings",
"private": false,
"owner": {
"login": "rust-lang",
"id": 5430905,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjU0MzA5MDU=",
"avatar_url": "https://avatars.githubusercontent.com/u/5430905?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rust-lang",
"html_url": "https://github.com/rust-lang",
"followers_url": "https://api.github.com/users/rust-lang/followers",
"following_url": "https://api.github.com/users/rust-lang/following{/other_user}",
"gists_url": "https://api.github.com/users/rust-lang/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rust-lang/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rust-lang/subscriptions",
"organizations_url": "https://api.github.com/users/rust-lang/orgs",
"repos_url": "https://api.github.com/users/rust-lang/repos",
"events_url": "https://api.github.com/users/rust-lang/events{/privacy}",
"received_events_url": "https://api.github.com/users/rust-lang/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/rust-lang/rustlings",
"description": ":crab: Small exercises to get you used to reading and writing Rust code!",
"fork": false,
"url": "https://api.github.com/repos/rust-lang/rustlings",
"forks_url": "https://api.github.com/repos/rust-lang/rustlings/forks",
"keys_url": "https://api.github.com/repos/rust-lang/rustlings/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/rust-lang/rustlings/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/rust-lang/rustlings/teams",
"hooks_url": "https://api.github.com/repos/rust-lang/rustlings/hooks",
"issue_events_url": "https://api.github.com/repos/rust-lang/rustlings/issues/events{/number}",
"events_url": "https://api.github.com/repos/rust-lang/rustlings/events",
"assignees_url": "https://api.github.com/repos/rust-lang/rustlings/assignees{/user}",
"branches_url": "https://api.github.com/repos/rust-lang/rustlings/branches{/branch}",
"tags_url": "https://api.github.com/repos/rust-lang/rustlings/tags",
"blobs_url": "https://api.github.com/repos/rust-lang/rustlings/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/rust-lang/rustlings/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/rust-lang/rustlings/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/rust-lang/rustlings/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/rust-lang/rustlings/statuses/{sha}",
"languages_url": "https://api.github.com/repos/rust-lang/rustlings/languages",
"stargazers_url": "https://api.github.com/repos/rust-lang/rustlings/stargazers",
"contributors_url": "https://api.github.com/repos/rust-lang/rustlings/contributors",
"subscribers_url": "https://api.github.com/repos/rust-lang/rustlings/subscribers",
"subscription_url": "https://api.github.com/repos/rust-lang/rustlings/subscription",
"commits_url": "https://api.github.com/repos/rust-lang/rustlings/commits{/sha}",