-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathrust.json
More file actions
1002 lines (1002 loc) Β· 40.7 KB
/
rust.json
File metadata and controls
1002 lines (1002 loc) Β· 40.7 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
[
"https://github.com/alacritty/alacritty",
"https://github.com/sharkdp/bat",
"https://github.com/BurntSushi/ripgrep",
"https://github.com/servo/servo",
"https://github.com/xi-editor/xi-editor",
"https://github.com/rust-unofficial/awesome-rust",
"https://github.com/sharkdp/fd",
"https://github.com/diem/diem",
"https://github.com/yewstack/yew",
"https://github.com/starship/starship",
"https://github.com/firecracker-microvm/firecracker",
"https://github.com/rust-lang/rustlings",
"https://github.com/SergioBenitez/Rocket",
"https://github.com/ogham/exa",
"https://github.com/meilisearch/MeiliSearch",
"https://github.com/tokio-rs/tokio",
"https://github.com/swc-project/swc",
"https://github.com/valeriansaliou/sonic",
"https://github.com/actix/actix-web",
"https://github.com/nushell/nushell",
"https://github.com/tikv/tikv",
"https://github.com/wasmerio/wasmer",
"https://github.com/atom-archive/xray",
"https://github.com/hecrj/iced",
"https://github.com/denisidoro/navi",
"https://github.com/analysis-tools-dev/static-analysis",
"https://github.com/tauri-apps/tauri",
"https://github.com/Rigellute/spotify-tui",
"https://github.com/hyperium/hyper",
"https://github.com/dandavison/delta",
"https://github.com/sharkdp/hyperfine",
"https://github.com/BurntSushi/xsv",
"https://github.com/amethyst/amethyst",
"https://github.com/ruffle-rs/ruffle",
"https://github.com/benfred/py-spy",
"https://github.com/uutils/coreutils",
"https://github.com/rust-lang/cargo",
"https://github.com/diesel-rs/diesel",
"https://github.com/RustPython/RustPython",
"https://github.com/rust-lang/book",
"https://github.com/citybound/citybound",
"https://github.com/openethereum/parity-ethereum",
"https://github.com/bevyengine/bevy",
"https://github.com/timberio/vector",
"https://github.com/imsnif/bandwhich",
"https://github.com/actix/actix",
"https://github.com/iron/iron",
"https://github.com/sharkdp/hexyl",
"https://github.com/rust-lang/mdBook",
"https://github.com/pingcap/talent-plan",
"https://github.com/dabreegster/abstreet",
"https://github.com/autumnai/leaf",
"https://github.com/rust-lang/rust-clippy",
"https://github.com/clap-rs/clap",
"https://github.com/rust-analyzer/rust-analyzer",
"https://github.com/bottlerocket-os/bottlerocket",
"https://github.com/neon-bindings/neon",
"https://github.com/timvisee/ffsend",
"https://github.com/Peltoche/lsd",
"https://github.com/getzola/zola",
"https://github.com/Canop/broot",
"https://github.com/Geal/nom",
"https://github.com/mimblewimble/grin",
"https://github.com/rayon-rs/rayon",
"https://github.com/orf/gping",
"https://github.com/LemmyNet/lemmy",
"https://github.com/Spotifyd/spotifyd",
"https://github.com/bytecodealliance/wasmtime",
"https://github.com/gfx-rs/gfx",
"https://github.com/maps4print/azul",
"https://github.com/tantivy-search/tantivy",
"https://github.com/svenstaro/genact",
"https://github.com/XAMPPRocky/tokei",
"https://github.com/spacejam/sled",
"https://github.com/fdehau/tui-rs",
"https://github.com/cloudflare/quiche",
"https://github.com/huggingface/tokenizers",
"https://github.com/seanmonstar/warp",
"https://github.com/tokio-rs/mio",
"https://github.com/microsoft/windows-rs",
"https://github.com/Y2Z/monolith",
"https://github.com/rustwasm/wasm-bindgen",
"https://github.com/rust-lang/rustup",
"https://github.com/serde-rs/serde",
"https://github.com/paritytech/substrate",
"https://github.com/tree-sitter/tree-sitter",
"https://github.com/PistonDevelopers/piston",
"https://github.com/rust-lang/futures-rs",
"https://github.com/bytecodealliance/lucet",
"https://github.com/seanmonstar/reqwest",
"https://github.com/anordal/shellharden",
"https://github.com/phiresky/ripgrep-all",
"https://github.com/graphql-rust/juniper",
"https://github.com/rust-lang/rustfmt",
"https://github.com/imazen/imageflow",
"https://github.com/crossbeam-rs/crossbeam",
"https://github.com/PyO3/pyo3",
"https://github.com/launchbadge/sqlx",
"https://github.com/RustScan/RustScan",
"https://github.com/Schniz/fnm",
"https://github.com/racer-rust/racer",
"https://github.com/zombodb/zombodb",
"https://github.com/rust-lang/rls",
"https://github.com/mit-pdos/noria",
"https://github.com/linebender/druid",
"https://github.com/autozimu/LanguageClient-neovim",
"https://github.com/rustwasm/wasm-pack",
"https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials",
"https://github.com/sharkdp/pastel",
"https://github.com/koute/stdweb",
"https://github.com/hyperium/tonic",
"https://github.com/toshi-search/Toshi",
"https://github.com/extrawurst/gitui",
"https://github.com/cloudflare/boringtun",
"https://github.com/PistonDevelopers/conrod",
"https://github.com/volta-cli/volta",
"https://github.com/tensorflow/rust",
"https://github.com/redox-os/orbtk",
"https://github.com/chyyuu/os_kernel_lab",
"https://github.com/redox-os/tfs",
"https://github.com/nannou-org/nannou",
"https://github.com/o2sh/onefetch",
"https://github.com/nickel-org/nickel.rs",
"https://github.com/indygreg/PyOxidizer",
"https://github.com/http-rs/tide",
"https://github.com/async-rs/async-std",
"https://github.com/ogham/dog",
"https://github.com/ggez/ggez",
"https://github.com/tock/tock",
"https://github.com/gleam-lang/gleam",
"https://github.com/rusterlium/rustler",
"https://github.com/EmbarkStudios/rust-gpu",
"https://github.com/weld-project/weld",
"https://github.com/EbTech/rust-algorithms",
"https://github.com/Qovery/engine",
"https://github.com/vi/websocat",
"https://github.com/vulkano-rs/vulkano",
"https://github.com/servo/pathfinder",
"https://github.com/dtolnay/cxx",
"https://github.com/jmacdonald/amp",
"https://github.com/lumen/lumen",
"https://github.com/casey/just",
"https://github.com/lotabout/skim",
"https://github.com/shadowsocks/shadowsocks-rust",
"https://github.com/curlpipe/ox",
"https://github.com/MaxBittker/sandspiel",
"https://github.com/ivanceras/svgbob",
"https://github.com/ctz/rustls",
"https://github.com/habitat-sh/habitat",
"https://github.com/glium/glium",
"https://github.com/NerdyPepper/dijo",
"https://github.com/blockstack/stacks-blockchain",
"https://github.com/MaterializeInc/materialize",
"https://github.com/servo/webrender",
"https://github.com/gluon-lang/gluon",
"https://github.com/federico-terzi/espanso",
"https://github.com/harababurel/gcsf",
"https://github.com/artichoke/artichoke",
"https://github.com/nebulet/nebulet",
"https://github.com/pretzelhammer/rust-blog",
"https://github.com/paritytech/polkadot",
"https://github.com/pest-parser/pest",
"https://github.com/rusoto/rusoto",
"https://github.com/rbspy/rbspy",
"https://github.com/watchexec/watchexec",
"https://github.com/gyscos/cursive",
"https://github.com/Kintaro/wtftw",
"https://github.com/google/evcxr",
"https://github.com/bootandy/dust",
"https://github.com/sfackler/rust-postgres",
"https://github.com/cjbassi/ytop",
"https://github.com/sekey/sekey",
"https://github.com/withoutboats/notty",
"https://github.com/ImageOptim/gifski",
"https://github.com/cantino/mcfly",
"https://github.com/svenstaro/miniserve",
"https://github.com/ajeetdsouza/zoxide",
"https://github.com/nrc/r4cppp",
"https://github.com/smol-rs/smol",
"https://github.com/dimforge/nalgebra",
"https://github.com/TheAlgorithms/Rust",
"https://github.com/tildeio/helix",
"https://github.com/serde-rs/json",
"https://github.com/Kethku/neovide",
"https://github.com/cloudflare/wrangler",
"https://github.com/librespot-org/librespot",
"https://github.com/image-rs/image",
"https://github.com/cristicbz/rust-doom",
"https://github.com/koute/memory-profiler",
"https://github.com/google/OpenSK",
"https://github.com/boa-dev/boa",
"https://github.com/TeXitoi/structopt",
"https://github.com/chmln/sd",
"https://github.com/mozilla/sccache",
"https://github.com/rust-lang/crates.io",
"https://github.com/TimelyDataflow/timely-dataflow",
"https://github.com/smoltcp-rs/smoltcp",
"https://github.com/jhspetersson/fselect",
"https://github.com/antoyo/relm",
"https://github.com/mitsuhiko/redis-rs",
"https://github.com/amethyst/specs",
"https://github.com/gotham-rs/gotham",
"https://github.com/liljencrantz/crush",
"https://github.com/Byron/gitoxide",
"https://github.com/rust-lang/regex",
"https://github.com/Findomain/Findomain",
"https://github.com/rajasekarv/vega",
"https://github.com/immunant/c2rust",
"https://github.com/bodil/typed-html",
"https://github.com/mitsuhiko/indicatif",
"https://github.com/ijl/orjson",
"https://github.com/tailhook/vagga",
"https://github.com/cloudhead/rx",
"https://github.com/ballista-compute/ballista",
"https://github.com/bluejekyll/trust-dns",
"https://github.com/bastion-rs/bastion",
"https://github.com/cgag/loc",
"https://github.com/seed-rs/seed",
"https://github.com/flutter-rs/flutter-rs",
"https://github.com/dgiagio/warp",
"https://github.com/huytd/kanban-app",
"https://github.com/dflemstr/rq",
"https://github.com/hrkfdn/ncspot",
"https://github.com/google/tarpc",
"https://github.com/actix/examples",
"https://github.com/WebAssembly/WASI",
"https://github.com/gfx-rs/wgpu",
"https://github.com/rust-windowing/winit",
"https://github.com/mozilla/mentat",
"https://github.com/saschagrunert/webapp.rs",
"https://github.com/bheisler/criterion.rs",
"https://github.com/killercup/cargo-edit",
"https://github.com/ralfbiedert/cheats.rs",
"https://github.com/johnthagen/min-sized-rust",
"https://github.com/chinedufn/percy",
"https://github.com/rust-ndarray/ndarray",
"https://github.com/lalrpop/lalrpop",
"https://github.com/dtolnay/anyhow",
"https://github.com/BurntSushi/quickcheck",
"https://github.com/denoland/rusty_v8",
"https://github.com/oam-dev/rudr",
"https://github.com/r-darwish/topgrade",
"https://github.com/greshake/i3status-rust",
"https://github.com/rust-lang/miri",
"https://github.com/libp2p/rust-libp2p",
"https://github.com/Rust-SDL2/rust-sdl2",
"https://github.com/emilk/egui",
"https://github.com/stepancheg/rust-protobuf",
"https://github.com/flamegraph-rs/flamegraph",
"https://github.com/twilco/kosmonaut",
"https://github.com/deislabs/krustlet",
"https://github.com/zetzit/zz",
"https://github.com/mrDIMAS/rg3d",
"https://github.com/seppo0010/rsedis",
"https://github.com/tikv/raft-rs",
"https://github.com/Plume-org/Plume",
"https://github.com/rust-lang-nursery/failure",
"https://github.com/dimforge/nphysics",
"https://github.com/Keats/tera",
"https://github.com/chronotope/chrono",
"https://github.com/gchp/iota",
"https://github.com/quinn-rs/quinn",
"https://github.com/redox-os/termion",
"https://github.com/pemistahl/grex",
"https://github.com/buildfoundation/mainframer",
"https://github.com/tinysearch/tinysearch",
"https://github.com/awslabs/aws-lambda-rust-runtime",
"https://github.com/ClementTsang/bottom",
"https://github.com/rustcc/RustPrimer",
"https://github.com/dalance/procs",
"https://github.com/jameslittle230/stork",
"https://github.com/mesalock-linux/mesalink",
"https://github.com/bayard-search/bayard",
"https://github.com/PistonDevelopers/hematite",
"https://github.com/ron-rs/ron",
"https://github.com/nix-rust/nix",
"https://github.com/rcore-os/rCore",
"https://github.com/rust-unofficial/too-many-lists",
"https://github.com/rust-windowing/glutin",
"https://github.com/Aloxaf/silicon",
"https://github.com/brson/stdx",
"https://github.com/makepad/makepad",
"https://github.com/das-labor/panopticon",
"https://github.com/RedBeardLab/rediSQL",
"https://github.com/dgrunwald/rust-cpython",
"https://github.com/m4b/bingrep",
"https://github.com/TimelyDataflow/differential-dataflow",
"https://github.com/gfx-rs/wgpu-rs",
"https://github.com/vislyhq/stretch",
"https://github.com/calebwin/emu",
"https://github.com/danburkert/prost",
"https://github.com/rslint/rslint",
"https://github.com/godot-rust/godot-rust",
"https://github.com/murarth/rusti",
"https://github.com/mullvad/mullvadvpn-app",
"https://github.com/qarmin/czkawka",
"https://github.com/nbp/holyjit",
"https://github.com/gtk-rs/gtk",
"https://github.com/EmbarkStudios/texture-synthesis",
"https://github.com/serenity-rs/serenity",
"https://github.com/tikv/grpc-rs",
"https://github.com/sozu-proxy/sozu",
"https://github.com/libpnet/libpnet",
"https://github.com/AdamNiederer/faster",
"https://github.com/nical/lyon",
"https://github.com/PistonDevelopers/dyon",
"https://github.com/RazrFalcon/svgcleaner",
"https://github.com/tower-rs/tower",
"https://github.com/erikgrinaker/toydb",
"https://github.com/async-graphql/async-graphql",
"https://github.com/chrisdickinson/git-rs",
"https://github.com/Mercateo/rust-for-node-developers",
"https://github.com/dtolnay/thiserror",
"https://github.com/rust-lang/hashbrown",
"https://github.com/cswinter/LocustDB",
"https://github.com/vhakulinen/gnvim",
"https://github.com/allthemusicllc/atm-cli",
"https://github.com/Nukesor/pueue",
"https://github.com/passcod/cargo-watch",
"https://github.com/PumpkinDB/PumpkinDB",
"https://github.com/38/plotters",
"https://github.com/retep998/winapi-rs",
"https://github.com/jonhoo/left-right",
"https://github.com/djc/askama",
"https://github.com/servo/html5ever",
"https://github.com/RedisJSON/RedisJSON",
"https://github.com/tokio-rs/tracing",
"https://github.com/imgui-rs/imgui-rs",
"https://github.com/databricks/click",
"https://github.com/fitzgen/dodrio",
"https://github.com/ivanceras/sauron",
"https://github.com/Amanieu/parking_lot",
"https://github.com/intermezzOS/kernel",
"https://github.com/theseus-os/Theseus",
"https://github.com/mmstick/parallel",
"https://github.com/zboxfs/zbox",
"https://github.com/crev-dev/cargo-crev",
"https://github.com/solana-labs/solana",
"https://github.com/housleyjk/ws-rs",
"https://github.com/petgraph/petgraph",
"https://github.com/rust-itertools/itertools",
"https://github.com/citahub/cita",
"https://github.com/AtheMathmo/rusty-machine",
"https://github.com/capnproto/capnproto-rust",
"https://github.com/fishinabarrel/linux-kernel-module-rust",
"https://github.com/stepancheg/grpc-rust",
"https://github.com/dbrgn/tealdeer",
"https://github.com/orhun/kmon",
"https://github.com/willdoescode/nat",
"https://github.com/dtolnay/syn",
"https://github.com/plietar/librespot",
"https://github.com/rust-lang-nursery/lazy-static.rs",
"https://github.com/cloud-hypervisor/cloud-hypervisor",
"https://github.com/facebookincubator/fastmod",
"https://github.com/agrinman/tunnelto",
"https://github.com/rcoh/angle-grinder",
"https://github.com/bodil/im-rs",
"https://github.com/yingDev/Tickeys",
"https://github.com/square/sudo_pair",
"https://github.com/notify-rs/notify",
"https://github.com/redox-os/ion",
"https://github.com/oracle/railcar",
"https://github.com/wasmerio/wasmer-python",
"https://github.com/xacrimon/dashmap",
"https://github.com/shssoichiro/oxipng",
"https://github.com/servo/bincode",
"https://github.com/xd009642/tarpaulin",
"https://github.com/mozilla/neqo",
"https://github.com/slog-rs/slog",
"https://github.com/rabite0/hunter",
"https://github.com/raphlinus/pulldown-cmark",
"https://github.com/rust-lang/chalk",
"https://github.com/DataDog/glommio",
"https://github.com/exonum/exonum",
"https://github.com/koute/cargo-web",
"https://github.com/google/mundane",
"https://github.com/hackndev/zinc",
"https://github.com/tomaka/redshirt",
"https://github.com/DaGenix/rust-crypto",
"https://github.com/lunaryorn/mdcat",
"https://github.com/BurntSushi/fst",
"https://github.com/lunatic-solutions/lunatic",
"https://github.com/linkerd/linkerd2-proxy",
"https://github.com/rust-fuzz/afl.rs",
"https://github.com/rust-lang/log",
"https://github.com/http-rs/surf",
"https://github.com/RazrFalcon/cargo-bloat",
"https://github.com/crossterm-rs/crossterm",
"https://github.com/holochain/holochain-rust",
"https://github.com/mbrubeck/robinson",
"https://github.com/lambda-fairy/maud",
"https://github.com/amethyst/legion",
"https://github.com/rusqlite/rusqlite",
"https://github.com/mun-lang/mun",
"https://github.com/trishume/syntect",
"https://github.com/8051Enthusiast/regex2fat",
"https://github.com/rust-lang/libc",
"https://github.com/RustAudio/cpal",
"https://github.com/carllerche/tower-web",
"https://github.com/maciejhirsz/logos",
"https://github.com/dtolnay/proc-macro-workshop",
"https://github.com/maidsafe-archive/crust",
"https://github.com/haimgel/display-switch",
"https://github.com/google/autocxx",
"https://github.com/RazrFalcon/resvg",
"https://github.com/Zokrates/ZoKrates",
"https://github.com/p-e-w/ternimal",
"https://github.com/ozkriff/zemeroth",
"https://github.com/iovxw/rssbot",
"https://github.com/cobalt-org/cobalt.rs",
"https://github.com/LaurentMazare/tch-rs",
"https://github.com/silvia-odwyer/photon",
"https://github.com/ufoscout/docker-compose-wait",
"https://github.com/sigp/lighthouse",
"https://github.com/eqrion/cbindgen",
"https://github.com/oakes/SolidOak",
"https://github.com/Marwes/combine",
"https://github.com/BurntSushi/rust-csv",
"https://github.com/andy-5/wslgit",
"https://github.com/Xudong-Huang/may",
"https://github.com/sebcrozet/kiss3d",
"https://github.com/websockets-rs/rust-websocket",
"https://github.com/dtolnay/case-studies",
"https://github.com/rustasync/runtime",
"https://github.com/rust-windowing/android-rs-glue",
"https://github.com/twitter/rezolus",
"https://github.com/mohanson/gameboy",
"https://github.com/rhaiscript/rhai",
"https://github.com/mehcode/config-rs",
"https://github.com/zombodb/pgx",
"https://github.com/dimforge/ncollide",
"https://github.com/fengsp/pencil",
"https://github.com/rustcc/writing-an-os-in-rust",
"https://github.com/hyperium/h2",
"https://github.com/target/lorri",
"https://github.com/Ogeon/rustful",
"https://github.com/archseer/enigma",
"https://github.com/balena-io/wifi-connect",
"https://github.com/bbodi/notecalc3",
"https://github.com/sonos/tract",
"https://github.com/apache/incubator-teaclave-sgx-sdk",
"https://github.com/ZhangHanDong/tao-of-rust-codes",
"https://github.com/oreboot/oreboot",
"https://github.com/atanunq/viu",
"https://github.com/dtolnay/cargo-expand",
"https://github.com/sagiegurari/cargo-make",
"https://github.com/tummychow/git-absorb",
"https://github.com/japaric/xargo",
"https://github.com/gabdube/native-windows-gui",
"https://github.com/sfackler/r2d2",
"https://github.com/salsa-rs/salsa",
"https://github.com/kyren/luster",
"https://github.com/void-rs/void",
"https://github.com/H-M-H/Weylus",
"https://github.com/rust-bio/rust-bio",
"https://github.com/kevinmehall/rust-peg",
"https://github.com/imsnif/diskonaut",
"https://github.com/google/argh",
"https://github.com/rust-lang/git2-rs",
"https://github.com/rcore-os/zCore",
"https://github.com/mitnk/cicada",
"https://github.com/brandur/redis-cell",
"https://github.com/indradb/indradb",
"https://github.com/epi052/feroxbuster",
"https://github.com/near/nearcore",
"https://github.com/rust-rocksdb/rust-rocksdb",
"https://github.com/tokio-rs/loom",
"https://github.com/rustwasm/gloo",
"https://github.com/kpcyrd/sn0int",
"https://github.com/d-unseductable/ruru",
"https://github.com/mthom/scryer-prolog",
"https://github.com/zesterer/flume",
"https://github.com/joncatanio/cannoli",
"https://github.com/ajour/ajour",
"https://github.com/veloren/veloren",
"https://github.com/tsgates/rust.ko",
"https://github.com/gnzlbg/cargo-asm",
"https://github.com/rust-embedded/discovery",
"https://github.com/JasonShin/fp-core.rs",
"https://github.com/Morganamilo/paru",
"https://github.com/rust-cli/human-panic",
"https://github.com/rust-qt/ritual",
"https://github.com/rust-random/rand",
"https://github.com/rustgd/cgmath",
"https://github.com/graphprotocol/graph-node",
"https://github.com/str4d/rage",
"https://github.com/hecrj/coffee",
"https://github.com/penelopezone/rubyfmt",
"https://github.com/nervosnetwork/ckb",
"https://github.com/stepchowfun/toast",
"https://github.com/zhihu/rucene",
"https://github.com/AltSysrq/proptest",
"https://github.com/valeriansaliou/vigil",
"https://github.com/sirupsen/napkin-math",
"https://github.com/headcrab-rs/headcrab",
"https://github.com/amethyst/rendy",
"https://github.com/dimforge/rapier",
"https://github.com/fcsonline/drill",
"https://github.com/alexcrichton/futures-await",
"https://github.com/spearow/juice",
"https://github.com/alexcrichton/toml-rs",
"https://github.com/sfackler/rust-openssl",
"https://github.com/tokio-rs/mini-redis",
"https://github.com/docopt/docopt.rs",
"https://github.com/riker-rs/riker",
"https://github.com/alexcrichton/cc-rs",
"https://github.com/sfackler/rust-phf",
"https://github.com/steadylearner/Rust-Full-Stack",
"https://github.com/Luminarys/synapse",
"https://github.com/cervus-v/cervus",
"https://github.com/dotenv-linter/dotenv-linter",
"https://github.com/zargony/fuse-rs",
"https://github.com/lloydmeta/frunk",
"https://github.com/rust-lang-nursery/error-chain",
"https://github.com/rust-crdt/rust-crdt",
"https://github.com/iceiix/stevenarella",
"https://github.com/rust-secure-code/cargo-geiger",
"https://github.com/rust-native-ui/libui-rs",
"https://github.com/jauhien/iron-kaleidoscope",
"https://github.com/jonhoo/inferno",
"https://github.com/feather-rs/feather",
"https://github.com/tokio-rs/tokio-proto",
"https://github.com/J-F-Liu/lopdf",
"https://github.com/SoptikHa2/desed",
"https://github.com/ryanisaacg/quicksilver",
"https://github.com/TheDan64/inkwell",
"https://github.com/endgameinc/xori",
"https://github.com/osohq/oso",
"https://github.com/rust-fuzz/cargo-fuzz",
"https://github.com/anshulrgoyal/rust-web-developer-roadmap",
"https://github.com/RustSec/cargo-audit",
"https://github.com/rust-bitcoin/rust-bitcoin",
"https://github.com/Byron/dua-cli",
"https://github.com/jpochyla/psst",
"https://github.com/rs-ipfs/rust-ipfs",
"https://github.com/project-oak/oak",
"https://github.com/dpc/rdedup",
"https://github.com/alexcrichton/curl-rust",
"https://github.com/orogene/orogene",
"https://github.com/google/rerast",
"https://github.com/mackwic/colored",
"https://github.com/stevedonovan/gentle-intro",
"https://github.com/anp/moxie",
"https://github.com/servo/rust-url",
"https://github.com/pcwalton/sprocketnes",
"https://github.com/tokio-rs/bytes",
"https://github.com/raphlinus/font-rs",
"https://github.com/rust-ml/linfa",
"https://github.com/sharkdp/diskus",
"https://github.com/samtay/so",
"https://github.com/cloudflare/wirefilter",
"https://github.com/MitMaro/git-interactive-rebase-tool",
"https://github.com/facebookexperimental/eden",
"https://github.com/dswd/vpncloud",
"https://github.com/aaronjanse/dns-over-wikipedia",
"https://github.com/daa84/neovim-gtk",
"https://github.com/David-OConnor/pyflow",
"https://github.com/gsquire/topngx",
"https://github.com/Keats/validator",
"https://github.com/thruster-rs/Thruster",
"https://github.com/wez/wezterm",
"https://github.com/atroche/rust-headless-chrome",
"https://github.com/redox-os/relibc",
"https://github.com/lettre/lettre",
"https://github.com/dtolnay/watt",
"https://github.com/paritytech/parity-bitcoin",
"https://github.com/dtolnay/async-trait",
"https://github.com/ritchie46/polars",
"https://github.com/kornelski/dssim",
"https://github.com/KDE/rust-qt-binding-generator",
"https://github.com/substantic/rain",
"https://github.com/webview/webview_deno",
"https://github.com/MaikKlein/ash",
"https://github.com/org-rs/org-rs",
"https://github.com/Keats/jsonwebtoken",
"https://github.com/clog-tool/clog-cli",
"https://github.com/davidhampgonsalves/life-dashboard",
"https://github.com/yupferris/rustendo64",
"https://github.com/kkawakam/rustyline",
"https://github.com/kpcyrd/sniffglue",
"https://github.com/bjorn3/rustc_codegen_cranelift",
"https://github.com/paritytech/wasmi",
"https://github.com/utkarshkukreti/select.rs",
"https://github.com/IntrinsicLabs/osgood",
"https://github.com/JelteF/derive_more",
"https://github.com/bodil/vgtk",
"https://github.com/bwasty/learn-opengl-rs",
"https://github.com/RustAudio/rodio",
"https://github.com/georust/geo",
"https://github.com/rustwasm/twiggy",
"https://github.com/cargo-generate/cargo-generate",
"https://github.com/derniercri/snatch",
"https://github.com/exercism/rust",
"https://github.com/agersant/polaris",
"https://github.com/samuela/rustybox",
"https://github.com/bvaisvil/zenith",
"https://github.com/RustCrypto/hashes",
"https://github.com/adam-mcdaniel/oakc",
"https://github.com/bluss/indexmap",
"https://github.com/tafia/calamine",
"https://github.com/matklad/once_cell",
"https://github.com/koute/pinky",
"https://github.com/shepmaster/snafu",
"https://github.com/daogangtang/sapper",
"https://github.com/esphen/wsta",
"https://github.com/hatoo/oha",
"https://github.com/tokio-rs/tokio-core",
"https://github.com/fede1024/rust-rdkafka",
"https://github.com/tomaka/rouille",
"https://github.com/sunng87/handlebars-rust",
"https://github.com/rustless/rustless",
"https://github.com/BurntSushi/byteorder",
"https://github.com/wahn/rs_pbrt",
"https://github.com/murarth/ketos",
"https://github.com/hyperium/http",
"https://github.com/andygrove/datafusion",
"https://github.com/phaazon/luminance-rs",
"https://github.com/graphql-rust/graphql-client",
"https://github.com/denoland/deno_lint",
"https://github.com/awslabs/flowgger",
"https://github.com/rtic-rs/cortex-m-rtic",
"https://github.com/sbstp/kubie",
"https://github.com/telegram-rs/telegram-bot",
"https://github.com/thebracket/bracket-lib",
"https://github.com/webrtc-rs/webrtc",
"https://github.com/stratis-storage/stratisd",
"https://github.com/jonhoo/fantoccini",
"https://github.com/kbknapp/cargo-outdated",
"https://github.com/mongodb/mongo-rust-driver",
"https://github.com/causal-agent/scraper",
"https://github.com/astrolang/astro",
"https://github.com/ivanceras/sauron-native",
"https://github.com/sodiumoxide/sodiumoxide",
"https://github.com/pikkr/pikkr",
"https://github.com/altdesktop/i3-style",
"https://github.com/sunng87/cargo-release",
"https://github.com/dprint/dprint",
"https://github.com/spacejam/rio",
"https://github.com/dalek-cryptography/bulletproofs",
"https://github.com/akeru-inc/xcnotary",
"https://github.com/mitsuhiko/insta",
"https://github.com/rust-lang/rustfix",
"https://github.com/tower-rs/tower-grpc",
"https://github.com/clifinger/canduma",
"https://github.com/twistedfall/opencv-rust",
"https://github.com/rust-num/num",
"https://github.com/tikv/rust-prometheus",
"https://github.com/RustAudio/vst-rs",
"https://github.com/rust-db/refinery",
"https://github.com/orium/rpds",
"https://github.com/m4b/goblin",
"https://github.com/linebender/piet",
"https://github.com/rust-shell-script/rust_cmd_lib",
"https://github.com/theryangeary/choose",
"https://github.com/rust-osdev/uefi-rs",
"https://github.com/rust-rosetta/rust-rosetta",
"https://github.com/dropbox/pb-jelly",
"https://github.com/getsentry/sentry-cli",
"https://github.com/redsift/redbpf",
"https://github.com/pcwalton/rust-media",
"https://github.com/rust-lang/docs.rs",
"https://github.com/lizhuohua/linux-kernel-module-rust",
"https://github.com/TimeToogo/tunshell",
"https://github.com/cloudflare/lol-html",
"https://github.com/japaric/heapless",
"https://github.com/vitiral/artifact",
"https://github.com/snapview/tungstenite-rs",
"https://github.com/MaikKlein/rlsl",
"https://github.com/nagisa/rust_libloading",
"https://github.com/sit-fyi/sit",
"https://github.com/erickt/rust-zmq",
"https://github.com/BurntSushi/walkdir",
"https://github.com/clux/kube-rs",
"https://github.com/valeriansaliou/bloom",
"https://github.com/sixtyfpsui/sixtyfps",
"https://github.com/3Hren/msgpack-rust",
"https://github.com/teloxide/teloxide",
"https://github.com/ballista-compute/sqlparser-rs",
"https://github.com/sfackler/cargo-tree",
"https://github.com/coord-e/magicpak",
"https://github.com/osa1/tiny",
"https://github.com/koute/not-perf",
"https://github.com/llogiq/flame",
"https://github.com/hermitcore/libhermit-rs",
"https://github.com/heim-rs/heim",
"https://github.com/kvakvs/ErlangRT",
"https://github.com/saschagrunert/kubernix",
"https://github.com/dtolnay/quote",
"https://github.com/Manishearth/rust-gc",
"https://github.com/gmg137/netease-cloud-music-gtk",
"https://github.com/brendanzab/gl-rs",
"https://github.com/jeaye/ncurses-rs",
"https://github.com/phsym/prettytable-rs",
"https://github.com/japaric/steed",
"https://github.com/redox-os/rusttype",
"https://github.com/rust-embedded/embedded-hal",
"https://github.com/autopilot-rs/autopy",
"https://github.com/clojure-rs/ClojureRS",
"https://github.com/occlum/occlum",
"https://github.com/MROS/jpeg_tutorial",
"https://github.com/servo/rust-smallvec",
"https://github.com/linkerd/linkerd-tcp",
"https://github.com/arrayfire/arrayfire-rust",
"https://github.com/iliekturtles/uom",
"https://github.com/urbica/martin",
"https://github.com/mmstick/cargo-deb",
"https://github.com/daboross/fern",
"https://github.com/Drakulix/fireplace",
"https://github.com/athre0z/color-backtrace",
"https://github.com/emoon/rust_minifb",
"https://github.com/amethyst/laminar",
"https://github.com/withoutboats/fehler",
"https://github.com/colin-kiegel/rust-derive-builder",
"https://github.com/three-rs/three",
"https://github.com/spieglt/nestur",
"https://github.com/googlefonts/Inconsolata",
"https://github.com/hyperledger/indy-sdk",
"https://github.com/rune-rs/rune",
"https://github.com/ah-/anne-key",
"https://github.com/arkworks-rs/snark",
"https://github.com/Smithay/smithay",
"https://github.com/richox/orz",
"https://github.com/pyros2097/rust-embed",
"https://github.com/jD91mZM2/termplay",
"https://github.com/Miserlou/Loop",
"https://github.com/parasyte/pixels",
"https://github.com/EmbarkStudios/cargo-deny",
"https://github.com/robmikh/minesweeper-rs",
"https://github.com/dropbox/rust-brotli",
"https://github.com/jaemk/cached",
"https://github.com/jrmuizel/raqote",
"https://github.com/microsoft/com-rs",
"https://github.com/simias/rustation",
"https://github.com/DanielKeep/cargo-script",
"https://github.com/colin-kiegel/rust-pretty-assertions",
"https://github.com/mystor/rust-cpp",
"https://github.com/algesten/ureq",
"https://github.com/SuperTails/langcraft",
"https://github.com/sharkdp/vivid",
"https://github.com/ilai-deutel/kibi",
"https://github.com/lpxxn/rust-design-pattern",
"https://github.com/aws-cloudformation/cloudformation-guard",
"https://github.com/killercup/trpl-ebook",
"https://github.com/tiny-http/tiny-http",
"https://github.com/euclio/vim-markdown-composer",
"https://github.com/Byron/google-apis-rs",
"https://github.com/nachoparker/dutree",
"https://github.com/bheisler/RustaCUDA",
"https://github.com/pikelet-lang/pikelet",
"https://github.com/async-raft/async-raft",
"https://github.com/jakedeichert/mask",
"https://github.com/spicavigo/kafka-rust",
"https://github.com/DanielKeep/tlborm",
"https://github.com/simd-lite/simd-json",
"https://github.com/nabijaczleweli/cargo-update",
"https://github.com/deislabs/akri",
"https://github.com/cessen/ropey",
"https://github.com/vmware-archive/haret",
"https://github.com/mathall/rim",
"https://github.com/maciejkula/rustlearn",
"https://github.com/PyO3/maturin",
"https://github.com/portier/portier-broker",
"https://github.com/jeaye/q3",
"https://github.com/brave/adblock-rust",
"https://github.com/CleverCloud/lapin",
"https://github.com/termhn/ultraviolet",
"https://github.com/g-plane/zsh-yarn-autocompletions",
"https://github.com/vmware/differential-datalog",
"https://github.com/ecumene/rust-sloth",
"https://github.com/killercup/quicli",
"https://github.com/google/rustcxx",
"https://github.com/influxdata/influxdb_iox",
"https://github.com/facebookexperimental/MIRAI",
"https://github.com/sciter-sdk/rust-sciter",
"https://github.com/dpc/mioco.pre-0.9",
"https://github.com/nccgroup/dirble",
"https://github.com/danielpclark/rutie",
"https://github.com/ringbahn/ringbahn",
"https://github.com/mooman219/fontdue",
"https://github.com/tafia/quick-xml",
"https://github.com/reacherhq/check-if-email-exists",
"https://github.com/jmdx/TLS-poison",
"https://github.com/orlp/slotmap",
"https://github.com/doctorn/micro-mitten",
"https://github.com/baskerville/plato",
"https://github.com/thepowersgang/rust_os",
"https://github.com/napi-rs/napi-rs",
"https://github.com/chris-morgan/teepee",
"https://github.com/dalek-cryptography/curve25519-dalek",
"https://github.com/dtolnay/rust-quiz",
"https://github.com/Stebalien/tempfile",
"https://github.com/estk/log4rs",
"https://github.com/ierror/ssh-permit-a38",
"https://github.com/jeremyletang/rust-sfml",
"https://github.com/mozilla/grcov",
"https://github.com/rust-osdev/bootloader",
"https://github.com/servo/ipc-channel",
"https://github.com/maekawatoshiki/naglfar",
"https://github.com/Dushistov/flapigen-rs",
"https://github.com/autumnai/collenchyma",
"https://github.com/PistonDevelopers/Piston-Tutorials",
"https://github.com/turnage/valora",
"https://github.com/cogciprocate/ocl",
"https://github.com/edef1c/libfringe",
"https://github.com/HuobiGroup/huobi-chain",
"https://github.com/gamozolabs/orange_slice",
"https://github.com/saschagrunert/git-journal",
"https://github.com/xi-frontend/xi-term",
"https://github.com/uuid-rs/uuid",
"https://github.com/signalapp/libsignal-client",
"https://github.com/gluesql/gluesql",
"https://github.com/neithernut/git-dit",
"https://github.com/rust-lang/polonius",
"https://github.com/iqlusioninc/abscissa",
"https://github.com/linebender/runebender",
"https://github.com/fitzgen/bumpalo",
"https://github.com/zonyitoo/coio-rs",
"https://github.com/clux/muslrust",
"https://github.com/17cupsofcoffee/tetra",
"https://github.com/leftwm/leftwm",
"https://github.com/alex-shapiro/ditto",
"https://github.com/Munksgaard/session-types",
"https://github.com/reem/stainless",
"https://github.com/GuillaumeGomez/sysinfo",
"https://github.com/paritytech/jsonrpc",
"https://github.com/sunjay/turtle",
"https://github.com/ExodusVPN/exodus",
"https://github.com/fluencelabs/fluence",
"https://github.com/gchp/rustbox",
"https://github.com/Freaky/Compactor",
"https://github.com/softprops/envy",
"https://github.com/guillaume-be/rust-bert",
"https://github.com/fusion-engineering/inline-python",
"https://github.com/gimli-rs/gimli",
"https://github.com/cyndis/qmlrs",
"https://github.com/Skallwar/suckit",
"https://github.com/opticdev/optic",
"https://github.com/mcginty/snow",
"https://github.com/ContainerSolutions/trow",
"https://github.com/kivikakk/comrak",
"https://github.com/fitzgen/generational-arena",
"https://github.com/CensoredUsername/dynasm-rs",
"https://github.com/PistonDevelopers/glfw-rs",
"https://github.com/igiagkiozis/plotly",
"https://github.com/jni-rs/jni-rs",
"https://github.com/microsoft/lain",
"https://github.com/ReactiveX/RxRust",
"https://github.com/rustodon/rustodon",
"https://github.com/chyh1990/yaml-rust",
"https://github.com/Twinklebear/tray_rust",
"https://github.com/jedisct1/edgedns",
"https://github.com/tagua-vm/tagua-vm",
"https://github.com/est31/cargo-udeps",
"https://github.com/rbatis/rbatis",
"https://github.com/LukeMathWalker/build-your-own-jira-with-rust",
"https://github.com/adamsky/globe",
"https://github.com/termoshtt/accel",
"https://github.com/Peternator7/strum",
"https://github.com/withoutboats/romio",
"https://github.com/yeslogic/allsorts",
"https://github.com/redox-os/kernel",
"https://github.com/KillingSpark/rustysd",
"https://github.com/ozankasikci/rust-music-theory",
"https://github.com/rust-av/rust-av",
"https://github.com/mitsuhiko/dialoguer",
"https://github.com/blackbeam/rust-mysql-simple",
"https://github.com/rust-dev-tools/cargo-src",
"https://github.com/PyO3/rust-numpy",
"https://github.com/TheWaWaR/simple-http-server",
"https://github.com/christolliday/limn",
"https://github.com/llogiq/mutagen",
"https://github.com/eycorsican/leaf",
"https://github.com/aatxe/irc",
"https://github.com/scottlamb/moonfire-nvr",
"https://github.com/BurntSushi/aho-corasick",
"https://github.com/softprops/shiplift",
"https://github.com/tomusdrw/rust-web3",
"https://github.com/rhysd/kiro-editor",
"https://github.com/dtolnay/paste",
"https://github.com/aochagavia/rocket_wasm",
"https://github.com/Smithay/wayland-rs",
"https://github.com/rust-skia/rust-skia",
"https://github.com/golemparts/rppal",
"https://github.com/o8vm/krabs",
"https://github.com/avr-rust/ruduino",
"https://github.com/elastic/elasticsearch-rs",
"https://github.com/NerdyPepper/eva",
"https://github.com/TatriX/realworld-rust-rocket",
"https://github.com/binast/binjs-ref",
"https://github.com/flouthoc/vas-quod",
"https://github.com/bokuweb/rustynes",
"https://github.com/probe-rs/probe-rs",
"https://github.com/NetSys/NetBricks",
"https://github.com/servo/core-foundation-rs",
"https://github.com/chris-morgan/rust-http",
"https://github.com/bwasty/vulkan-tutorial-rs",
"https://github.com/cloud-hypervisor/rust-hypervisor-firmware",
"https://github.com/mongodb-labs/mongo-rust-driver-prototype",
"https://github.com/lise-henry/crowbook",
"https://github.com/mcginty/shoop",
"https://github.com/termhn/rayn",
"https://github.com/actix/actix-net",
"https://github.com/dtolnay/typetag",
"https://github.com/maekawatoshiki/rapidus",
"https://github.com/tensorbase/tensorbase",
"https://github.com/not-fl3/macroquad",
"https://github.com/jaemk/self_update",
"https://github.com/kaegi/alass",
"https://github.com/kahing/catfs",
"https://github.com/brendanzab/codespan",
"https://github.com/wireapp/proteus",
"https://github.com/asomers/mockall",
"https://github.com/maciejhirsz/json-rust",
"https://github.com/a8m/pb",
"https://github.com/fschutt/printpdf",
"https://github.com/zeromq/zmq.rs",
"https://github.com/ivanceras/diwata",
"https://github.com/xi-editor/xi-win",
"https://github.com/nukep/llamadb",
"https://github.com/rust-db/barrel",
"https://github.com/dtolnay/no-panic",
"https://github.com/bitvecto-rs/bitvec",
"https://github.com/apache/incubator-teaclave",
"https://github.com/andrewchambers/bupstash",
"https://github.com/sebglazebrook/aliases",
"https://github.com/sminez/penrose",
"https://github.com/rustwasm/wee_alloc",
"https://github.com/greyblake/whatlang-rs",
"https://github.com/crazymykl/rust-koans",
"https://github.com/rust-lang/datafrog",
"https://github.com/zkcrypto/bellman",
"https://github.com/thiagopnts/groot",
"https://github.com/trishume/telefork",
"https://github.com/lukaslueg/macro_railroad",
"https://github.com/latex-lsp/texlab",
"https://github.com/PistonDevelopers/graphics",
"https://github.com/Aardwolf-Social/aardwolf",
"https://github.com/tokio-rs/tokio-minihttp",
"https://github.com/nagisa/msi-rgb",
"https://github.com/oconnor663/duct.rs",
"https://github.com/oxy-secure/oxy",
"https://github.com/jedisct1/encrypted-dns-server",
"https://github.com/NicolasLM/nucleon",
"https://github.com/tikv/pprof-rs",
"https://github.com/rolandshoemaker/theca",
"https://github.com/dropbox/fast_rsync",
"https://github.com/rust-lang/reference",
"https://github.com/michelhe/rustboyadvance-ng",
"https://github.com/dalek-cryptography/ed25519-dalek",
"https://github.com/rust-lang/rust-semverver",
"https://github.com/rustcc/coroutine-rs",
"https://github.com/romanz/electrs",
"https://github.com/fairingrey/actix-realworld-example-app",
"https://github.com/maekawatoshiki/sericum",
"https://github.com/not-fl3/miniquad",
"https://github.com/kurtlawrence/papyrus",
"https://github.com/linebender/piet-gpu",
"https://github.com/austinjones/tab-rs",
"https://github.com/t-rex-tileserver/t-rex",
"https://github.com/tailhook/rotor",
"https://github.com/microsoft/avml",
"https://github.com/yangwenmai/learning-rust",
"https://github.com/pravic/winapi-kmd-rs",
"https://github.com/dinfuehr/dora",
"https://github.com/danburkert/memmap-rs",
"https://github.com/chinedufn/webgl-water-tutorial",
"https://github.com/rust-threadpool/rust-threadpool",
"https://github.com/BurntSushi/chan",
"https://github.com/twitter/rpc-perf",
"https://github.com/rust-embedded/cortex-m-quickstart",
"https://github.com/rust-bitcoin/rust-lightning",
"https://github.com/casbin/casbin-rs",
"https://github.com/SubstratumNetwork/SubstratumNode",
"https://github.com/cortex/ripasso",
"https://github.com/rust-embedded/cortex-m",
"https://github.com/rust-cli/thunder",
"https://github.com/dtolnay/reflect",
"https://github.com/nathansizemore/hydrogen",
"https://github.com/ratel-rust/ratel-core",
"https://github.com/toidiu/learn-rust",
"https://github.com/Ameobea/tickgrinder",
"https://github.com/minio/minsql",
"https://github.com/servo/font-kit",
"https://github.com/bitflags/bitflags",
"https://github.com/radicle-dev/radicle-upstream",
"https://github.com/fkie-cad/cwe_checker",
"https://github.com/TimUntersberger/nog",
"https://github.com/edibopp/carboxyl",
"https://github.com/jonhoo/bus",
"https://github.com/makepad/makepad.github.io",
"https://github.com/thebracket/rustrogueliketutorial",
"https://github.com/yamafaktory/jql",
"https://github.com/ascclemens/paste",
"https://github.com/mufeedvh/binserve",
"https://github.com/nvzqz/static-assertions-rs",
"https://github.com/tbillington/kondo",
"https://github.com/bitshifter/glam-rs",
"https://github.com/paupino/rust-decimal",
"https://github.com/996icu/996.ICU",