2023-05-11
1785
#rust
Chigozie Oduah
168473
110
May 11, 2023 ⋅ 6 min read

Building microservices in Rust with Spin

Chigozie Oduah Technical writer | Frontend developer | Blockchain developer

Recent posts:

Typescript or Zod for Validation?

TypeScript vs Zod: Clearing up validation confusion

Learn when to use TypeScript, Zod, or both for data validation. Avoid redundant checks and build safer, type-sound applications.

Alexander Godwin
Oct 6, 2025 ⋅ 3 min read
Wasm 3 Before GTA 6 LogRocket Article

We got Wasm 3.0 before GTA 6: Meet the web’s new engine

Discover how WebAssembly 3.0’s garbage collector, exception handling, and Memory64 transform Wasm into a true mainstream web platform.

Ikeh Akinyemi
Oct 3, 2025 ⋅ 2 min read

How to use AI to build accurate ShadCN components

AI agents often break shadcn/ui components with outdated docs or made-up props. The MCP server fixes this by giving live access to registries. In this tutorial, we’ll set it up and build a Kanban board to show it in action.

Chizaram Ken
Oct 3, 2025 ⋅ 5 min read
Rust Project for Web Services LogRocket Article

The best way to structure Rust web services

Learn how to structure Rust web services with clean architecture, Cargo workspaces, and modular crates for scalable, maintainable backends.

Jude Miracle
Oct 2, 2025 ⋅ 2 min read
View all posts

One Reply to "Building microservices in Rust with Spin"

  1. Please, can you update tutorial’s last chapter “cat ninja”?
    I got compile error:

    let mut res = spin_sdk::http::send(
    | ___________________^
    9 | | http::Request::builder()
    10 | | .method(“GET”)
    11 | | .uri(“https://catfact.ninja/fact”)
    12 | | .body(None)?,
    13 | | )?;
    | |______^ the `?` operator cannot be applied to type `impl Future<Output = Result>`

Leave a Reply