Distributing Rust GTK+ Apps

Rust  and GTK+ can be used to create cross-platform graphical applications. ” GTK+ is a cross-platform widget toolkit for creating graphica… Read more

Similar

A zero-overhead linked list in Rust

Let’s implement an immutable, singly-linked list. Singly-linked means that each node contains a reference to the next node, but not vice versa. To make this data structure really performant, let’s use plain references instead of heap-allocated types. This... (more…)

Read more »