Now Is Awesome Moment to Start With Rust in AI A developer post argues that starting Rust development for AI agents now requires only an IDE, a coding agent such as Claude Code, Codex or Cursor, and a single prompt, citing DHH's Rails World 2026 keynote where he said 37signals treats hand-written code as an exceptional state and HEY got a new Rust mail backend. The post recommends the Everruns Framework, added via `cargo add everruns --features openai` plus `tokio`, which provides model providers, typed tools, multi-turn sessions, live events, cancellation, MCP and durable local state inside the Rust process with no server, and notes the experimental Everruns Serve crate inspired by the Tokio team's Topcoat. This week I watched DHH’s Rails World 2026 keynote https://www.youtube.com/watch?v=vDjW dRyKXY . Big part of it is “pencils down”: at 37signals writing code by hand is now an exceptional state. And, among other things, HEY got a new mail backend in Rust. His take on Rust is my favorite line of the whole talk: I love Rust Rust is amazing …if you never, ever, EVER have to look at it yourself. He also said he does not know any Rust at all and considers that a feature. Lol. I will not repeat why Rust fits agents so well, I already wrote about it in Rust Is Winning the AI Code Generation Race https://chaliy.name/blog/rust-rising-in-ai-codegen/ . This post is about the practical part: how to start, today. You Just Need an IDE and an Agent You need an IDE, a coding agent Claude Code, Codex, Cursor, whatever you use , and a sentence like this: Install the Rust toolchain if it is missing, create a new binary crate, add everruns with the openai feature and tokio, and make a small agent with one tool that tells the current time. Run it and show me the answer. That is it. Agent installs rustup , runs cargo new , adds dependencies, writes code, fights the compiler, and shows you the result. You read the behavior, not the lifetimes. You will still learn Rust along the way, just in a different order. First you see what the program does, then you ask “why is there Arc here?” and agent explains. Honestly this is better way to learn anything. Now, How to Start Building AI Agents Best way to start building agents in Rust is Everruns Framework https://github.com/everruns/everruns/tree/main/crates/everruns . And I say this completely objectively, it has nothing to do with the fact that I am building it :D. Okay, I am biased. Very biased. But hear me out. It gives you agents with model providers, typed tools, multi-turn sessions, live events, cancellation, MCP, and durable local state. It runs inside your Rust process, no server required. cargo add everruns --features openai cargo add tokio --features macros,rt-multi-thread export OPENAI API KEY=sk-... And the whole agent: use std::time::{SystemTime, UNIX EPOCH}; use everruns::{Agent, Engine, OpenAI}; /// Return the current Unix time in seconds. everruns::tool async fn current time - Result