-
Notifications
You must be signed in to change notification settings - Fork 1
/
old_tui-rs.txt
5593 lines (5593 loc) · 111 KB
/
old_tui-rs.txt
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
00mjk/nushell
0129general/FoundryProject
01VCS/gitoxide
02alexander/robby-fischer
02alexander/rterm
035059/oxinotation
06chaynes/tfc-toolset
079035/PWN
097115/tickrs-patched
0LNetworkCommunity/carpe
0LNetworkCommunity/diem
0LNetworkCommunity/libra-framework
0LNetworkCommunity/move
0LNetworkCommunity/move-0L
0LNetworkCommunity/version-six
0LNetworkCommunity/zapatos
0P3N50URC3-F0R3V3R/veloren
0dragosh/berilia
0mbi/veloren
0o-de-lally/diem
0o-de-lally/libra
0o-de-lally/libra-wallet
0o-de-lally/libra_linear_commits
0srD4n/BHCLI
0xAdherent/tiny
0xBeam0/RustFileExplorerCli
0xDEF1DAD/foundry
0xFAC0/arp-watch-tui
0xFAC0/sniffer-tui
0xFAC0/todo-tui
0xGingi/phantom
0xKarl98/foundry
0xKilty/filler
0xKitsune/foundry
0xMNIBUS/foundry
0xMRTT/nixpkgs
0xTomoyo/foundry
0xYYY/foundry
0xYao/foundry
0xa57/foundry
0xb-s/rugit
0xb-s/vscode_extension_manager
0xca11/foundry
0xcregis/anychain-aptos
0xdbe-example/rust-tui-list
0xfornax/foundry
0xfourzerofour/dev_notes
0xfuturistic/zkUniswap
0xhappyboy/apt-trading-bot
0xhappyboy/aptos-light-sdk
0xhappyboy/blockchain-arsenal
0xhappyboy/blockchain-terminal
0xicl33n/obsidian
0xident/foundry
0xinugami/foundry
0xj4r/foundry
0xjanitor/foundry
0xlax/aptos-core
0xquantech/aptos-rust-tutorial1
0xvv/foundry
0xzoz/aptETH
0xzoz/move
1040803788/aptos
120L021422/nushell
123p10/slack-tui
12AT7/rust-commandline-example
1337CyberSecurity/tari
149segolte/carton
15012700225/my-snarkOS
16arpi/meteo-tui
16arpi/termchat
191220029/rust_benchmarks_1.71
1b5d/diem
1b5d/libra
1to-team/snarkOS
1vpcryptos/aptos-core
2019jack/aptos-core
20k-ultra/popsicle
22388o/LNsploit
22388o/darkfi
22388o/gitui
22388o/nushell
23marabi/chess
281066586/aptos-core
2dav/mvtime
2lambda123/darkfi
2nd-Layer/oura
3AceShowHand/vector
3JIou-home/vector
3for/snarkOS
3kz2501/foundry
3waffel/calculator
3x0dv5/diem
491600092/aptos-core
4Dmu/conrads_game_of_life_rust
4t145/biliterm
534208438/gping
56quarters/mtop
5ko99/password-manager
5kram/diem
5thdimension/clarinet
666lcz/move
6block/zkwork_aleo_worker
7415963987456321/spotify-tui
75asa/spotify-tui
777moneymaker/tarnished
7sDream/connex
7sDream/tui-markup
8yangstar8/quake
900PerMonth/nushell
92ikonostasov/aptos-core
92ikonostasov/move
A-SunsetMkt-Forks/atuin
A-SunsetMkt-Forks/nushell
A-SunsetMkt-Forks/veloren
A1aCr1ty/RainySummer
ABMatrix/zkmatrix-pool-protocol
AFLplusplus/libafl_paper_artifacts
AI21212019/rust-commandline-example
ALinuxPerson/playit-agent
AMBacelar/input-reader
ANT-Studio/tli-checkers
AP-based-snek-JAM/snek-server
AP2008/gitoxide
ARez2/RustyChat
ARez2/Snippy
ASISBusiness/aptos-core
AUGVR/gping
AYanchev01/changer
AZaharof/aptos-core
AaronFeickert/tari
AaronRandall/spotify-tui
Abdoulkader321/serveur-mini-IRC
Abezzi/personal_work_suit_cli
AbhayFernandes/rmus
Abonite/GoldMarket
AbuJ4m4l/Password-Manager
Abuchtela/aptos-core
Abuchtela/optimism
Achillesxu/vector
Acollie/network_sweep
Act0r1/Tui-TODO
AdamL-Microsoft/onefuzz
AdamSmith89/git_tui
Adamkadaban/wordlet
Adit-Chauhan/nibler
Adit-Chauhan/youtube_tui
Aditaya08/Auction01
AdrianColaianni/tbg
AegYebi/aptos-core
Aelnor/harv
Aeskull/chat_app
Aeskull/chat_app_server
AfaanBilal/central-limit
Afoucaul/gitui
Afourcat/fluvio
AftermathFinance/af-sui-decorators
Agnoctopus/Tartiflette
AidenGariepy89/Battleship
Aidenzich/tickrs
Aion-Studio/lazytestr
Ajalsr/rust-todo-list
AkashSingh123/FastDDSModifications
AkashSingh123/dual_relay
Akeboshi-Min/veloren
AkkuRam/chess
Al3c5/snarkOS
AlanForester/snarkOS
Aldrin-Shanty/Password_Manager
AleksanderEvensen/cfd
AleksanderGondek/diskonaut
AleoXofficial/AleoXMiner
Alevsk/openapi-fuzzer
Alex222222222222/rgames
AlexFradle/util-tui
AlexLaFroscias/gping
AlexNaKI/aptos-core
AlexRogalskiy/diskonaut
AlexRogalskiy/kdash
AlexRogalskiy/spotify-tui
AlexRogalskiy/vector
AlexTDWilkinson/Nail
AlexanderBrese/auto-stash
AlexandreOSouza/lstime
AlexeyS82/aptos-core
Alexolotal/ALVR
AliAltanOmurveren/kanban-terminal
AliKarbasiCom/PEGASUS
AliSajid/dilemma-tactix
Alish14/tui-todoapp
Alizyan4/aptos-core
Almugra/todoist-tui
Altalogy/tari
Alyth0x/aptos-core
AmbroseX/ALVR
Amdahl-rs/ogma
Ameralameri/foundry
Amirdastranj1396/vector
AmmarAbouZor/tui-journal
AnaZhuang/bandwhich
AnasGhareib/darkfi
Andrcraft9/mystore-rs
AndreaPinna/diem
AndreeMu/atuin
Andresserg/aptos-core
Andrew-Eathan/XVM
Andrew-Fryer/LibAFL_personal
AndrewGaspar/xadb
AndrewKovalenko/lotogen
Andrey14880707/sui
Andrey14880707/sui1
AndyWarhol239/aptos-core
Angel-guo/nushell
AngelOnFira/megagame-rs
AngelOnFira/nadya
AngelOnFira/rusty-bookstore
AngleSideAngle/disc-tui
Animadverto-mundum/gobang-rs
AnirudhKonduru/pfview
Anishmourya/Practical-System-Programming-for-Rust-Developers
AnomalyFi/nodekit-zk
Another-Ashl3y/christmas-cli
Another-Ashl3y/rai
Anton-4/living-documentation-editor-poc
Anunn-ki/aleo-pool-server
Anunn-ki/aleo-prover
Anupam-Ashish-Minz/music-player
AnyVM/mini-move
Anyhowclick/foundry
Apetree100122/snarkOS
Apocentre/sf-sui-extractor
Apocentre/sui-sponsor
Aptoverse/aptos-fork
Arcant1/veloren
ArchetypalTech/PrayMachine
Archimidis/heartwood
Archived-Repo-History/dioxus
Ardelean-Calin/sensus-firmware
Argannor/track-work
Arian-p1/ddocs
ArielHorwitz/devjournal
Aristolon/veloren-wecw-source
Arkko002/MoneyShot.rs
Arklingh/CLI-Rhythm
Arm-Ava/Aleo
Arm-Ava/Sui
Arm-Kaz/Aleo
Arm-Kaz/Aptos7
Arm-Kaz/Sui34
ArnabKar/foundry
Art-Arm/Sui
ArtemSkrebkov/yandex-music-cli
Arthur-Daniels/aptos-core
Artisan-Hosting/Artisan_Platform
Arvonit/irc_rs
AspyMui/learning-tui
AsyncEgg/primorial_of_a_number
AsyncEgg/tui_demos_and_tests
AsyncEgg/wordle_clone
AtharvPorate1/rust-billing
Athulr32/wallet
AtlasPilotPuppy/vector
AureliaDolo/clidle
AvaterClasher/wistime
Aver1n1900/aptos-core
Avgeevdima/aptos-core
Avimitin/lazyarchbuild
Awkor/cratetorrent
Ay-can/booky
Ayowel/vector
Aziks0/bandwhich
B4dM4n/tuigreet
BLASTchain/blast
BTCLTC/sui-vanity
BalabanovA898/ltm
BananaIguana/binspect
BananaPepperRacoon/rust-cli-messager
BasilAl/gitui
BasileusErwin/expenses-project-tui
BattleCh1cken/browser-pong
Bdevil5/aptos-core
BeLeap/docker-tui
BeaconBrigade/balance-tui
BearerPipelineTest/diem
BearerPipelineTest/vector
Beastwick18/nyaa
Beethoven-n/joshuto
Ben-Kincaid/term-sort
BenLDouthwaite/reference
BenLeadbetter/klata
BenMcConville/Mathematica
BenSnedeker/MaLB
BeniukBohdan/aptos-core
BeniukBohdan/nushell
Bernardstanislas/foundry
BerserkerMother/notes_cli
Bharadwaja-rao-D/Deadlines-tui
BigBuildBench/mlange-42_git-igitt
BijanRegmi/Ext4Impl
Bind/foundry
BitcoinOutput/imove
Bittencourt/biosim-rust
BiziPixels/kdash
Blatko1/zone-bot
BlockChainScript/snarkOS
BlockSuite/libra
Bluefiredreams/aptos-core
Bluheir/cacophoney
Blupegasus0/day_list
Blupegasus0/pets
Blupegasus0/rust-cli-example
Bobmaintain/diem
BobrishhevBogdan/aptos-core
Boda805/foundry
Bodzinua/aptos-core
BonVenue/aptos-core
BoolPurist/tui_block_builder
BorisSV4646/snarkOS-old
Boskeroni/sposu
Botnarvladimir/aptos-core
BoynChan/yo-rust-ruta
Brandon-zhong/diem
BraulioVM/nushell
BrendanArmstrong1/joshuto
BrookJeynes/checklist
BrookJeynes/flashcards-rs
BrookJeynes/itg
BrookJeynes/oxycards
BrookJeynes/pomodoro-rs
Brownymister/easy-dungeon-scrawl
Buorsebgh/aptos-core
BurntNail/english_quotes
ByForkProject/veloren
ByHelyo/naviga
Byte-Lab/monocle
C0D3-M4513R/nixpkgs
CMIW/Typing-Practice-tui
COAOX/aptos-core
COMP6991UNSW/termgame
CRasico/pomorusto
CSeanXu/foundry
CUB3D/rust-rtmfp
CableSynth/rtodo2
Caedan/nushell
CaffeeLake/nixpkgs
CakeWithDivinity/clocker
Calder-Ty/tmix
CalebEverett/keyrock-task
CalleOlsen/crossterm-examples
Callum-Irving/fluvio
Camel0x/aptos-core
CameronWThomas/gibbering-mouther
CapCap/aptos-core
CargoLens/cargo-lens-ws
Caryyon/nx-tui
Caryyon/t2tclient
Celeo/evemapping
Celeo/fsetui
Celeo/gw2_inventory
Celeo/matterterm
Celeo/vatsim_online
Celeo/vatsim_pilot_glance
Celibistrial/discord_tui
Celsuss/minesweeper-tui
Celsuss/slacker-tui
Centaurioun/nixpkgs
Ceres445/TicTacToeTUI
Ceres445/tictactoe
Certora/FoundryIntegration
ChaiSomsri96/foundry
ChainMovers/suibase
ChandlerSwift/nushell
ChengHKH/load_cell
CherryYang05/rust-minesweeper
Chewingiz/Projet-rpg-rust-2021
Chicken-in-a-Can/executive-edit
Chiieeffff/dove
ChilloManiac/prev-work-lego
Chinayuan/veloren
Cho202/aptos-core
Chris-Mooney852/httrs
CipherSprout/sui
CircuitCoder/termscp
Ciubix8513/spotify-display
Clanwashere/Veloren-RPG
Classical1956/foundry
Clay-Mysten/move
ClemensGerstung/rusted_wizard
Clinery1/structural_s_expression_editor
Cluster7ck/rogue_forest
ClydeDrexler/notion_cli
Code-Militia/jirust
CodeConiglietto/evolimage
CodeGp2018/aleo-prover
CodeGp2018/aptos-core
CodeGp2018/snarkOS
CohleRustW/tracker
CoinArcade/veloren
Cokemonkey11/thw-subscriber
ColorCookie-dev/LedgerTUI
ColsonXu/ctm
Concelare/FASAM
ConchuOD/lab
ConchuOD/memory-aperature-configurator
ConnorBaker/alejandra
ConsensusFuzz/LOKI
Contribution-Tracking/nixpkgs
Coombszy/SeeElEye
CootieShots/p2pflow
CorbanR/nixpkgs-1
CoreyCole/tui-chess
CorneliusCornbread/Volnita
Cortantse/rust2048
CrazyBlockchainMan/aptos-rust-tutorial1
CrazySerGo/snarkOS
Crest/ztop
CryptoFewka/vector
CryptoLubov/Imported-Interesting
CryptoMiha/aptos-core
CumpsD/snarkOS
CyberFlameGO/all-is-cubes
CyberFlameGO/atuin
CyberFlameGO/bottom
CyberFlameGO/dua-cli
CyberFlameGO/foundry
CyberFlameGO/gitoxide
CyberFlameGO/gobang
CyberFlameGO/onefuzz
CyberFlameGO/pulseshitter
CyberFlameGO/veloren
CyberJoee/aptos-core
D-DLTEO/diem
D-DLTEO/move
DEFCONPRO/snarkOS
DELTSV/Projet-Rust
DLDenis/aptos-core
DOBSxu/rust-cookbook-code
DOMELAND/DOMELAND
DRepublic-io/Move
Daasin/Pendiem
DadyaBorya/tui_backup
Dadybayo/foundry
Daiki48/dafi
Daiki48/pets_management
Daksh14/croc-look
DamolAAkinleye/onefuzz
DanCardin/perhaps
DanEscher98/myTutorials
Daniel-K-Ivanov/foundry
DanielBarton446/tcp-chat-server
DanielCender/veloren
Danielduel/tower-of-tech
Daniiel-X/aptos-core
Daniru2007/Text-Editor
DapengSusu/tgit
Dark-Alex-17/managarr
DarkBlue2021/AURORA_Protocol
DarkHighness/opendigger-cli
DarkWanderer/vector
DarkhanShakhan/game-engine
DarrenBaldwin07/coredb-gcp-issue
DarrenBaldwin07/rapid
DarrenBaldwin07/rapid-demo
DarrenBaldwin07/rapid-labs
Dashalisaa/sui-copy
DataLearns/vector-data-pipeline
David-Cha/move
DavidAlphaFox/erldash
DavidAlphaFox/gitoxide
DavidAlphaFox/quake
DavidAlphaFox/veloren
DavidHVernon/dirp
DavidHospital/ust
DavidLDill/move
DavidLakeT/task-manager
Dawid69/toodles
Day-Daybov/Aleo-HQ
Ddraigan/diff-tool
DeCarabas/fwd
Deadairx/nhl-stats-tui
DeamonDev/rust-learning
Decodetalkers/Snaketui
Deiolly/veloren
Delvoid/pet-tui
Demuirgos/Brick-Station
Dengjianping/aptos-core
Dennis-Nedry-From-Jurassic-Park/fluvio
Derek-zd/snarkOS
Destrings2/biosim-rust
DevCleaner/devcleaner
Devarth123/mpv-tui
DevilAngelos/nushell
DevinR528/rumatui
Dexter2389/pomodoro-tui
Dhghomon/finance-tool
Dhi13man/rust_text_editor
DieracDelta/ferrix
DingDean/console
DioxusLabs/rink
DisableChat/rip-tower
Dixiao-L/tunet-rust
DjoDjaX/aptos-core
DmKrup/aptos-core
DoHoonKim8/evm-verifier
DocRAID/packet-tool
Doesntmeananything/packrat
DomingoMG/spotify-tui
Dong-Hyeon-Yu/optme
Doslin/vector
Dr-42/project_manager
DrDewayneRobe/aptos-core
DrSloth/tui_repl
DragonCapsule/DOMELAND
DragonCapsule/veloren-wecw-source
Dragoshel/rss-rs
DrakeEvans/foundry
DreamLinuxer/diem
Drone-Scientists/flightctl
Drumato/elfpeach
DrunkenToast/ruest-client
DvashVistrame/tuigreet
Dvisacker/eth-navigator
DvorakDwarf/disrust
DylanFlann/snarkOS
ECE1770/diem-benchmark
ETJeanMachine/tetroxide
EatingPie/onefuzz
Ecilos/ecilos-aptos-core-fork
EdgarMtz00/ingenieria_computacion
EdwardBetts/nushell
EequalsMCsquare/gsvr.rs
EgorZaripov7ib8h/aptos-core
Ekgardt/aptos
ElXreno/nixpkgs
EliKor/nushell
Eliot00/quake
Elpopoo/sui
ElrohirGT/trace
Em1lT/guess_word
EmKian/Tetrs
EmNudge/termicode
EmiliaFili/snarkOS
Enitoni/pulseshitter
EnriqueTejeda/aptos-core
Entangle-Protocol/foundry
Eoghanmc22/mc-tools
Epg33/Practicas_con_rust
Epic-Oreo/winCookie
Equilibris/discord-tui
Equilibris/x-tui
Eraden/amdgpud
Eric-chagas/spotify-tui
EricHenry/neko
EricsmOOn/erldash
ErkanDERELI/snarkOS
Errorist79/snarkOS
EspressoSystems/HotShot
EthanVIII/geneFINCH_deprecated
Etto48/HexPatch
Ewan-Brown/veloren
Ex-32/ferris-finder
Excloudx6/atuin
ExoticQuinn/ALVR
ExperiBass/prideful
Extrems/ALVR
FZDSLR/nixpkg-loong64-test
FabianWildgrube/tlspuffin
Fabus1184/ramp
Faggio-Java/Monitor-RS
Faggio-Java/Music-rs
Fairbrook/analizador_sem
Fais649/questR
FakeMichau/lma
FannyFirst/tetris
FarafonovBogdan/nushell
FareehaAltaf/Rust_Worksheets
FedePizarro15/truco-rs
FinalBob/finalverse
Fineas/-mama-
Fineas/sundbox
FintanH/crate2nix
Fiono11/diem
Firepal/ALVR
Fixxative/rover_drive
Flaise/sclan
FlaminSarge/ALVR
Flightlesseagle/snarkOS
Flintblocks/reth-server
Floflis/nushell
FloppyDisck/GPTerm
FlorianRohm/aoc2021
Flynatol/masters-project
FoXTaKa47/aptos-core
Fogapod/rshub
ForkEtg/spotify-tui
FrailWords/simple_privi
FrancescoRuta/rust_process_manager
Franceshe/foundry
Francis-Rockwell/Wordle
FrankChinedu/rust-cli-TUI
FrankieIsLost/foundry
Frany-oss/rust-cli-example
Freax13/console
FredeHG/chess_rust
Frederik-Baetens/console
FreeMasen/gw2-rs
FreyMo/tetrs
Freyskeyd/chekov
FridayOrtiz/TBM
FridgeSeal/Luckybox
Fryuni/advent-of-code-2021
Funami580/russ
FuzzyLitchi/freak
GGG1235/veloren
GReX-Telescope/GReX-T0
GU1L0/move
GXinOvO/RustTest
Gabrax/RustyNotes
Gabriel-M-Martins/todo-tui
Gabriel-M-Martins/tui-scaffolding
Gamlet-Gam/Sui
Garmelon/cove
Gearhartlove/Escape
GeneralMing/nushell
GenesysGo/intuition
George-Miao/teler
Gepsonka/RustySnake
GeraldHost/foundry
GerardRodes/taur
Gerb-Voogt/tulok-reborn
Gers2017/eradicate-tui
GhostOfGauss/snark-verifier
Ghostintheshell-iuseArchbtw/c2devMALWAREBEWARE
Gilitiko/joy
GitBluub/wanit
GitemOS/gitem
Giviko28/ChatRust
Gnarus-G/sky
Gnarus-G/tic-tac-toe
GobiasSomeCoffeeCo/angry
Gobidev/dioxus
Gobidev/macchina
Gobidev/nixpkgs
GodyFack/aptos-core
Gofrettin/veloren
GordonWang/vector
GoremykinVyacheslav/aptos-core
GradualSyrup/UltimateTrainingModpack
GrannyTurbo/rs_system_monitor
GrapeBaBa/aptos-core
GreasySlug/simple-tui-file-manager
GreasySlug/tui_rs_samples
GreeFine/ktui
Guanran928/nixpkgs
Guiguiprim/csvlens
GuillaumeGomez/bottom
GuilloteauQ/bib-picker
Gumichocopengin8/diem
Gumilam/snarkOS
Guolong-Zhang/nushell
GwabbaWaba/conveyor_line_inc
Gyarbij/spotify-tui
GyroZepelix/namecrypt
GyroZepelix/tui-learning
H1d3r/rustpad
Haimrich/mismem
HakeemsGit/RustyLines
HalenZay/aptos-core
HamzaOralK/gitten
HanBYY/gping
HankB-o-t/rust-edit
Harmonyblue/nixpkgs
HarukaMa/aleo-pool-server
HarukaMa/snarkOS
HasSak-47/cellular_automata
HasSak-47/rust_test
HasinZaman/DataBaseManager
HasinZaman/cut_game
HawkAve/tussygalore
HaxSam/ln-scraper
Haxine/snarkOS
Heavenston/revsh
HectorHW/bocchifuzz
Hefeweizen/systeroid
HelpFreedom/joshuto
Henneberg-Systemdesign/devsync
HenryCROSS/Snake.rs
Herring-UGACSEE-4290-F24/SCC-Unix
Herring-UGACSEE-4290-F24/SCC-Windows
HeyLaurelTestOrg/aptos-core
HicaroD/twitch.rs
HilliamT/foundry
Himan-Miku/pack_hunter
HimbeerserverDE/musikbox
HippieHosenHustler/sftui
Hipste2/diem
Hofer-Julian/nushell
HoloTheDrunk/puccinia
Homer-Mctavish/rust-projects
Hope10086/ALVR-CG-XDMMC
Horki/veloren
Horki/xplr
Horryportier/Watcher
Hsiang-xxs/foundry
HubertXaver/task-warrior-tui
HughCook/risk-encryption
HunterSun2018/Violas
HunterSun2018/diem
HunterSun2018/libra
Huy-Dinh/gotify_sample
HybridEidolon/metrics
HyperStandard/foxglove
IAvecilla/snarkOS
IDbianxy/aptos-core
IWANABETHATGUY/projclean
IaDrake20/PL_Final
Iamfittz/aptos-core
Ian-Marco-Moffett/VaporCat
Iantroyy/foundry
Icarus9913/libra
IceCodeNew/nixpkgs
Idekubaguscom/aptos-core
Ikolinda/sui
Ikysu/rs-chat-client
Ikysu/rust-chat
Ilingu/codewars-tui
Ilingu/rtkill
Illuminate-dev/game-of-life
ImGabe/tuiermo
ImNotDoneYet/aptos-core
Inphi/foundry
Interfiber/rapd
InukVT/k-download
Invo-Technologies/poems
IoptaQ/aptos-core
IrvingLuo/spotify-tui
IrynaDa/aptos-core
IsaacTay/clocktui
IsakLarsson/rustmon
ItsBenyaamin/passmng
Ivan-Shish/Aptos34
Ivan-Shish/Sui34
JC-55/foundry
JCLLi/UAV-Rust
JCallicoat/cotp
JJdastoner5099/nixpkgs-master
JQXX/aptos-core
JRMurr/bang
JUSTIVE/atuin
JWaibong/tui-typing-test
Ja-sonYun/apple-reminder-cli
Jabawaka/todo_rust
Jabir-Srj/thokr
JackMechem/ALVR
Jacke/nushell
JacksonKjar/wpmrs
JacksonWork2010/tickrs
Jacktronic21/aptos-core
Jacky-Lzx/note_rs
Jackydai-bc/snarkOS
Jaco-Minnaar/requester
JacobJohansen/gobang
JacobLinCool/missile-launcher
JacquelineCasey/ConnectFour
Jagroop-Singh/WireWatch
Jagroop-Singh/filemanager-rs
Jagroop-Singh/rust_chess_engine
JaimeNA/TODO
JamesPRobertson/ACCRT-engineer-rs
JanHett/staged-timer
Janmajayamall/foundry
JaoCR/typing-reader
Jarekkkkk/SuiLipse
JarrydTrokis/libra
Jaso5/chatty-rs
JasonMiesionczek/chess-engine
JasonZhangjc/stock_query
JasoreKuhrt/bandwhich
Javier-varez/ce
Jay-boo/FileExplorer
JayTee42/weight-wb
Jayman2000/joy-pr
JeeppersCreeppers/kmon
JeremyWells227/terminal_graph
JermellB/bottom
JerryKwan/starcoin
JesperAxelsson/termilog
JesseCSlater/booktyping
Jesspu/ytui-music
Jesterhearts/tui-image
JesusStas/diem
JewerlyBony/aptos-core
JimitSoni18/uzu
Jimmyalpha/diem
Jitendra2603/Hvim
JiwanChung/turm_gpu
Jo6a/multitimer-tui
JoHuang/vector
JoeyVee8666/aptos-core
JohnHubcr/rustpad
JohnnnyWang/bottom
JohnnnyWang/console
Joingithubstyle/aptos-core
Jon-Becker/heimdall-rs
JonathanMurray/achtung-rs
JonathanMurray/tiny-games
JonathanVargasRoa/Spotify-Tui
JonathanWoollett-Light/multi-process-logger
JonnyWalker81/nebulous
JonnyWalker81/walker
JorgeMayoral/ripnode
JosephFerano/kanban-tui
JosephLai241/nomad
JoshKarpel/fungoid
Joshuashen022/snarkOS
JotaEmePM/PassManager
Juarman32/spotify-tui
Juedsd/Sui-move--NFT-Market
JuliaMoon1/aptos-core
JulianKnodt/hyperbolic-visualization
Julien-R44/fast-ssh
Jumner/todo
Jumongweb/Sui
JungoQuentin/TUI_KeyboardRacer
Junkyards3/notification-rs
JustBobinAround/JEF
JustMel69/overfocus
JustaLiang/aptos-playground
JustinH11235/terminal-video-chat
JustinKnueppel/vector
JustusFluegel/sqlx
K1llByte/konta
KKOULY/snarkOS
KULeuven-COSIC/fpt-demo
Kabie/aptos-core
Kaendor/quality-time
Kafva/rokie
KaitlynEthylia/tet-rs
Kalynari/tools-max
KamilaBorowska/nixpkgs
Kamillaova/nixpkgs-termux
KantLex/rust-tui-chat
KapDecy/rw
Kara-Cooper/atuin
KarlHeitmann/git_explorer
KarlHeitmann/needle_in_a_yaml
KarlHeitmann/rg_explorer
Karthik248/veloren
KatsukiFujimoto/git-ex-rs
KatsukiFujimoto/git-rs
KatsukiFujimoto/tui-rs-tutorial
KaylorBen/gensokyo-tui
Kazuhiro-Mimaki/rust-db-tui
KeaganStevens/agi-tui
KeeganMyers/ri
KennethyC/aptos-core
KentaKariya/gtfs-viewer-tui
KernelErr/cloudconsole
KeyrockEU/aptos-core
Kharos102/LibAFL
Khelthal/lsp_installer
KhvanGuzel/aptos-core
KiFoundation/gaal
Kibouo/rustpad
Kibouo/tui-logger
Kindhearted57/diem
Kindhearted57/move
KinoThe-Kafkaesque/munin
KireevskiyGleb/aptos-core
KirisakiAria/aptos-core
Kirottu/ALVR
KislitsinSergey/aptos-core
KitoHo/veloren
KlaasKuiper/libra
KnorrFG/rpg-tools
KodeByKalab/foundry
KodiCraft/nushell
KohlJary/taskwarrior-tui
KokaKiwi/gitui
KokoCha/aptos-core
Komplementariteten/tui-pwsafe
KonstantinDjairo/systeroid
Kontoristen/veloren
KoshkaVorovka/aptos-core
Kr1ptal/foundry
Krakaw/TOTP
Kretood/aptos-core
Krillian111/krillians-little-helper
KripC2160/rust-commandline-example
Krishnacore/aptos-core
KruGGoK/aptos-core
Kruhlmann/bork
Kryszak/penny
Kuaku/rust_lite_explorer
Kuba429/hangman-tui-rs
KunalKrSagar/TODO_TUI
Kurtsley/Nanoterm
Kwaak-Resources/Diary-TUICLI
Kwaak-Resources/GPGKeyManagement-TUICLI
Kwaak-Resources/GoBang-TUICLI-CrossPlatformDatabaseManagement
Kyagara/crescent
KyleBarton/nushell
L10-bit/snarkOS
L3afMe/konoha
LAPKB/PMcore
LIPUU/tomato-timer
LK26/gping
LMH01/alpha_tui
LUX14Zx/bottom
LWEdslev/pomotui
LXNavigation/runner
LadyLovelace02/IRustC
Laelaps9/Single-Player-Poker
LanceEa/fluvio
Lannnnh/ristory
Lantern-chat/torch
LaplaceKorea/fluvio
LaplaceKorea/foundry
LaplaceKorea/gitoxide
LaplaceKorea/starcoin
LartTyler/gb-rs
LasmGratel/cardgame-rs
LastMyName/aptos-core
LayerZero-Labs/aptos-core
LazyDope/rclone-filter-former
LeeCenY/rusty_ladder
LeeWarnock/tickrs
LegitCamper/my-spacetraders
Leibniz137/libra
LemonHX/diem
LemonHX/move
LemonHX/starcoin
LeoRiether/tori
LeoniePhiline/showcase-dl
LeonyaGo/aptos-core
LeperGnome/trre
Leticia-maria/nushell
Leutwiler/foundry
LiamGallagher737/cratui
LibreQoE/LibreQoS
LibreQoE/lqos_rs
LievRenard/desktop_app
LightFreak/nushell
Liimp/aptos-core
Lijie0981/quake
LikDev-256/ytop
LinYunWen/bandwhich
LingmoOS-Testing/lingmo-nix
Linya-IronMan/rust-learn
Lioncat2002/GitHistory
LithiumFish893/479-Project
LittleTree689/libra
Liu404/aptos-core
Liujiadong/nushell
Live-CTF/LiveCTF-DEFCON31
Live-CTF/LiveCTF-DEFCON32
LoipesMas/accord
LoipesMas/cargo-select
LolokaR/aptos-core
Lonsterh/aptos-core
LordFoom/rumodoro
LordFoom/sxredder
Louis-Amas/reth-fork
LoveSponge/rustido
Lowband21/rusty2048
LrsNate/timer-rs
LucCrypto/aptos-core
LucaSchinnerl/barsh
LucasWagler/nixpkgs
LucianBuzzo/rust-eth-chart
LudaHubaBuba/aptos-core
LudeeD/rant
LukeJessop/ALVR
Lunderberg/stardew_bot
Lut99/Todo-Rust
Luxvao/rust
Lymkwi/noseburn
LyricTian/vector
M-Komorek/taxes_paid_or_not
M1nxy/linux-wallpaperengine-preview
MAD-CITY-MULTIMEDIA-CO/spotify-tui
MARKMENTAL/sparklinux-scripts
MCHSL/tastytrade-cli
MCluck90/kaiju
MCorange99/pc-emu
MSN10t/libra
MTRNord/mx-bookmarks
MUTOYASAR/diem
MUTOYASAR/move-tools
MaciejWas/algonds
MadManLabs/bookmark
Madoshakalaka/communism
MaeScadden/rum
MakarenkoYana/aptos-core
MamunPW01/gitui
MamunPW01/zenith
MandavkarPranjal/lit
Mange/slack-tui
Mange/tydra
MangoNet-Labs/mango