Logo Image

Yet Another Rust SSG

· 5m ·

Cover

🚀 A Personal Detour into Rust

When I first started learning Rust, I did what most developers do: I went through the official book, wrote a few small CLI tools, played around with ownership and lifetimes, and got used to the compiler yelling at me. But eventually, I hit that point where I wanted to build something “real”—something that had a bit of structure, some actual user-facing output, and forced me to deal with files, rendering, and maybe even some HTML.

So I built a static site generator.

Not because the world needs yet another one. It doesn’t.

There are already great SSGs out there. Tools like Hugo, Jekyll, Zola, and Astro are mature, fast, flexible, and widely used.

Mine, by contrast, is extremely limited. It doesn’t support advanced templating, multilingual content, dynamic routing, or plugins. There’s no build system, no fancy config file, no extensibility. So why do it?

The short answer is: I wanted to build something useful while writing Rust.
The long answer is: I wanted to learn Rust by applying it to something that mirrors real-world problems, while also scratching a personal itch: having a site generator I fully understand, top to bottom.


🛠️ How It Works

The basic idea is simple. I have a content/ folder with Markdown files, and I want a program that converts them into styled HTML pages and saves them into a dist/ directory.

Here’s what I ended up building:

It’s not a big or particularly complex program, but it’s just complex enough to require me to work with:

I used no frameworks. Just the standard library, a handful of crates (tera, pulldown-cmark, notify, warp, serde, etc.), and a growing appreciation for Rust’s ergonomics (and quirks).


🌗 Aesthetic Touches: Dark Mode and Styling

This wasn’t just about back-end logic. I also wanted the generated site to look nice.

So I added:

Styling was mostly an exercise in CSS (not Rust), but it made the whole thing feel like a real website rather than just a bunch of raw HTML.

And yes, I admit it: I enjoyed tweaking the toggle animation way more than necessary.


🔄 Hot Reload, Because Why Not?

One feature I really enjoyed building was hot reload. In development mode, the SSG:

This would have been a fun challenge because it required integrating multiple async workflows: file watching, content rebuilding, and WebSocket messaging—all in Rust. It was also one of the first times I felt really comfortable writing asynchronous Rust code.

Pity it doesn’t work.

Sure, it would have not been as seamless as Vite or Astro, but it’d be nice to have. But I built it from scratch, in a language I’m still learning. I’ll eventually get it right.


🔒 Production Mode: --prod

In development mode, everything is geared toward speed and visibility. In production mode, it’s the opposite: no server, no hot reload, and the output is minified to reduce file size.

Running the SSG with --prod will:

This separation keeps the build clean and the development experience pleasant.


📦 Deployment

Once everything is generated, deploying the site is trivial. The dist/ folder is ready to go:

It’s one of the reasons I love static sites: zero infrastructure. No database, no backend, no dependencies. Just HTML, CSS, and optionally a bit of JS.


🧠 What I Learned

This project taught me a lot. It wasn’t always smooth sailing, but Rust’s compiler is a great teacher. Over the course of building this SSG, I got better at:

It also taught me patience. And persistence. And how to read compiler errors like a second language.


🎯 What This Is Not

This is not:

This is:

And honestly, that’s enough.


✨ Conclusion

Building “Yet Another Rust SSG” wasn’t about creating the best tool out there. It was about building something, and learning Rust in the process.

I’m proud of what I built—not because it’s better than the tools that already exist, but because it’s mine. I understand every line of it. I fought with every borrow checker complaint. I added every feature one commit at a time.

If you’re learning Rust and want a project that forces you to engage with the language meaningfully, I highly recommend building your own static site generator. It doesn’t have to be pretty. It doesn’t have to be fast. It just has to exist. And if it helps you learn, then it has already succeeded.


Thanks for reading.

The source code is available on https://github.com/fulgidus/yet-another-rust-ssg. 😄