Building an ASN1 Codec with the Rust FFI

The Rust ecosystem comes with all the tools you need to call into a C Library. This is a great way to use existing libraries in your Rust application or library and also a nice way to introduce Rust to parts of your application. Read more

Similar

Beginner’s Series to Rust

Rust has been ranked as one of the most loved languages by developers. In this series, you will learn the fundamentals of Rust development. We'll start by downloading the tools you need to program with Rust, walk through common concepts, and share what's ... (more…)

Read more »

Goodbye Rust, and Hello, D

After quite a bit of thought and consideration, I have decided to abandon my study of Rust, and move on to D. I had been learning Rust for a while now, and I have become quite comfortable with it, … (more…)

Read more »

A fast port scanner in 100 lines of Rust

To write a fast port scanner, a programming language requires: A Good I/O model, not to eat all the resources of the system. High-level abstractions and a good packaging system to isolate low-level code and reuse it easily. To be type and memory safe, be... (more…)

Read more »