Tag: rust

Integrate Rust Android App

Integrating a Rust module into an Android app

Dev

If you want one of your Rust project’s selling points to be that users can control their own data, you can’t use a completely browser-based service.

Martin Kimani
Jul 7, 2022 ⋅ 5 min read
Pathfinding In Rust A Tutorial With Examples

Pathfinding in Rust: A tutorial with examples

Dev

Let’s take a look at some options for pathfinding in Rust using breadth-first search, Dijkstra’s algorithm, and the A* search algorithm.

Greg Stoll
Jul 1, 2022 ⋅ 5 min read
Building A REST API In Rust With Rhai And Actix Web

Building a REST API in Rust with Rhai and Actix Web

Dev

Learn how to build Rust REST APIs with Rhai — a high-level scripting language similar to JavaScript — and the Actix Web framework.

Oduah Chigozie
Jun 27, 2022 ⋅ 8 min read
Integrating A Svelte App With Rust Using WebAssembly

Integrating a Svelte app with Rust using WebAssembly

Dev

Let’s learn how to connect a Svelte app with Rust code through WebAssembly and how to pass information between JavaScript and Rust.

Yashodhan Joshi
Jun 24, 2022 ⋅ 20 min read
Rust Logo

Comparing logging and tracing in Rust

Dev

Logging and tracing have similar use cases and a common purpose — to help you find the root causes of problems in your application.

Eze Sunday
May 27, 2022 ⋅ 4 min read
Configuring Vim For Rust Development

Configuring Vim for Rust development

Dev

Learn the basics of how to configure Vim for Rust development, plus get an in-depth look at using rust-analyzer.

Mario Zupan
May 27, 2022 ⋅ 7 min read
Decoding And Encoding Images In Rust Using The Image Crate

Decoding and encoding images in Rust using the image crate

Dev

Operating on images using Rust’s inbuilt functionality is a headache, but the image crate comes to our rescue and gives us a clean API to work with.

Hassan Uddin
May 24, 2022 ⋅ 6 min read
comparing-rust-scripting-languages-game-development

Comparing Rust scripting languages in game development

Dev

Rust has been something of a rockstar language in recent times as it continues to grow in popularity — learn the differences between eight Rust scripting languages.

Abiodun Solomon
May 24, 2022 ⋅ 6 min read
Rust Logo

Working with Rust collections

Dev

Rust collections enable us to store and retrieve data efficiently. This overview includes use cases for specific collections.

Ikeh Akinyemi
May 17, 2022 ⋅ 6 min read
Guide To Using Arenas In Rust

Guide to using arenas in Rust

Dev

Learn how to use arenas in Rust to improve the performance of memory allocation and deallocation to run your code faster.

Greg Stoll
May 16, 2022 ⋅ 5 min read
Rust Logo

Comparing Rust supply chain safety tools

Dev

These Rust tools will give you a modicum of security for minimal effort and improve the community’s supply chain security.

Andre Bogus
May 10, 2022 ⋅ 8 min read
Enums And Pattern Matching In Rust

Rust enums and pattern matching

Dev

Learn the basics of pattern matching and enums in Rust, including error handling, handling null values, and more.

Oduah Chigozie
Apr 26, 2022 ⋅ 6 min read