diff --git a/data/projects.json b/data/projects.json index 812c9e0..7eeedd8 100644 --- a/data/projects.json +++ b/data/projects.json @@ -53,5 +53,15 @@ "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"] + }, + { + "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) }