From 8366e8d56344c238473e12fa8de42a568835be74 Mon Sep 17 00:00:00 2001 From: Enigma <72496112+enigma-137@users.noreply.github.com> Date: Mon, 6 Apr 2026 13:10:18 +0100 Subject: [PATCH 1/3] Add new project entry for log-analyzer --- data/projects.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/data/projects.json b/data/projects.json index 812c9e0..1351baf 100644 --- a/data/projects.json +++ b/data/projects.json @@ -53,5 +53,10 @@ "repo_url": "https://github.com/dev-davexoyinbo/actix-web-starter-template", "banner": "https://opengraph.githubassets.com/1/dev-davexoyinbo/actix-web-starter-template", "tags": ["template"] - } + }, + { + "repo_url": "https://github.com/enigma-137/log-analyzer", + "banner": "https://opengraph.githubassets.com/1/enigma-137/log-analyzer", + "tags": ["cli"] + }, ] From e261fb47af2e9452c0b327a20d17323639fc594c Mon Sep 17 00:00:00 2001 From: "James Harrison .S." <40062598+KodeSage@users.noreply.github.com> Date: Mon, 6 Apr 2026 12:33:12 +0000 Subject: [PATCH 2/3] chores: added my project --- data/projects.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/data/projects.json b/data/projects.json index 812c9e0..a4f91b3 100644 --- a/data/projects.json +++ b/data/projects.json @@ -53,5 +53,10 @@ "repo_url": "https://github.com/dev-davexoyinbo/actix-web-starter-template", "banner": "https://opengraph.githubassets.com/1/dev-davexoyinbo/actix-web-starter-template", "tags": ["template"] + }, + { + "repo_url": "https://github.com/KodeSage/rustyochestrator", + "banner": "https://opengraph.githubassets.com/1/KodeSage/rustyochestrator", + "tags": ["crate", "tauri"] } ] From f511a00df99a9ff0b2e098a0555f4c984bb5a47d Mon Sep 17 00:00:00 2001 From: martcpp Date: Mon, 6 Apr 2026 18:35:21 +0100 Subject: [PATCH 3/3] merge project --- data/projects.json | 6 +++--- src/types/projects.rs | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/data/projects.json b/data/projects.json index ba3a1fb..7eeedd8 100644 --- a/data/projects.json +++ b/data/projects.json @@ -58,10 +58,10 @@ "repo_url": "https://github.com/KodeSage/rustyochestrator", "banner": "https://opengraph.githubassets.com/1/KodeSage/rustyochestrator", "tags": ["crate", "tauri"] - } - { + }, + { "repo_url": "https://github.com/enigma-137/log-analyzer", "banner": "https://opengraph.githubassets.com/1/enigma-137/log-analyzer", "tags": ["cli"] - }, + } ] diff --git a/src/types/projects.rs b/src/types/projects.rs index ec611ef..63f9ec9 100644 --- a/src/types/projects.rs +++ b/src/types/projects.rs @@ -15,6 +15,7 @@ pub enum ProjectTags { DistributedSystem, RateLimiting, Template, + Cli, } impl fmt::Display for ProjectTags { @@ -29,6 +30,7 @@ impl fmt::Display for ProjectTags { ProjectTags::DistributedSystem => "Distributed System", ProjectTags::RateLimiting => "Rate Limiting", ProjectTags::Template => "Template", + ProjectTags::Cli => "CLI", }; write!(f, "{}", s) }