From 6144610f86a00fee49487d590ba7139e040fabf2 Mon Sep 17 00:00:00 2001 From: Reboot-Codes Date: Tue, 22 Oct 2024 23:06:00 -0700 Subject: [PATCH] Add clover post. --- src/_data/generalData.json | 10 ++++ src/_includes/components/footer.njk | 2 + src/_includes/layouts/post.njk | 7 ++- .../adventures-in-making-a-better-dystopia.md | 48 +++++++++++++++++++ .../making-a-better-cyberpunk-dystopia.md | 6 --- src/posts/rewriting-rcgi.md | 3 ++ 6 files changed, 68 insertions(+), 8 deletions(-) create mode 100644 src/posts/adventures-in-making-a-better-dystopia.md delete mode 100644 src/posts/making-a-better-cyberpunk-dystopia.md diff --git a/src/_data/generalData.json b/src/_data/generalData.json index 8e63beb..19533e2 100644 --- a/src/_data/generalData.json +++ b/src/_data/generalData.json @@ -128,6 +128,16 @@ "title": "Rust", "description": "Memory-safe, low-level programming language with FFI support and a great compiler and community.", "url": "https://www.rust-lang.org/" + }, + { + "title": "Tokio", + "description": "Asynchronous processing library for rust that implements modern paradigms and conventions.", + "url": "https://tokio.rs" + }, + { + "title": "Warp", + "description": "Advanced http(s) server library for rust, built on tokio.", + "url": "https://github.com/seanmonstar/warp" } ] } diff --git a/src/_includes/components/footer.njk b/src/_includes/components/footer.njk index cc12808..5e4b362 100644 --- a/src/_includes/components/footer.njk +++ b/src/_includes/components/footer.njk @@ -1,4 +1,6 @@