In this talk, we’ll go through some real-life examples of using Rust features like traits, newtype wrappers, generics, and macros for creating financial software. We’ll look at how regular application code can benefit from the features Rust provides.
Many people think of Rust primarily as a systems programming language focused on memory safety and high performance. All that is true, but there’s much more to the story. Rust is one of the best languages out there for writing strongly typed code: code that takes advantage of type level features to ensure certain classes of bugs cannot happen.
But Rust isn’t magic. Simply using a programming language does not bestow strong typing upon the code. You need to intentionally opt-in to using these features to get their full benefit.
In this talk, we’ll go through some real-life examples of using Rust features like traits, newtype wrappers, generics, and macros for creating financial software. We’ll look at how regular application code can benefit from the features Rust provides.
On top of that, we’ll see how the amazing serde library provides great data marshaling guarantees, and how we can leverage WASM compilation to get these benefits outside the server too.
In this talk, we will discuss how you can use Durable Execution to harden your applications in a few key areas: workflows, asynchronous tasks, microservice orchestration, and event processing.
In this talk, we'll explore reasoning with async Rust. We'll be introduced to its fundamental building blocks, such as `async`, `await`, `join` and `select`, and learn how to predict the behavior of code written with them.
I'd like to share what we've learned in the last 2 years, when building Iggy.rs message streaming infrastructure from the ground up.
This talk explores lessons learned while building a CRDT library with JSON semantics, aimed at application developers.
Should you dig the hype and default to Embassy when starting new microcontroller project? How it works and what does it bring to the table? Let's compare and measure the same IoT app written in sync and async Rust.