Skip to content

rust

Members Public

Building a Rust project on CircleCI

While Travis supports Rust natively for its build pipeline, CircleCI still misses first-class support for Rust. This short post explains how to build a Rust project on CircleCI so you don't have to go through all the trouble. We'll be using CircleCI 2.0, which comes with a new yaml

Members Public

Rust, Builder Pattern, Trait Objects, Box<T> and Rc<T>

One of the intimidating parts of learning Rust is to master all the basic container types: Box, Rc, Arc, RefCell, Mutex, etc. The least we can say is that they are not really intuitive to use and they contribute to the steep Rust learning curve.

Members Public

Getting started with Capn'proto RPC for Rust

Introduction Capn'proto is a data interchange format and RPC system. Unlike protocol buffers (coupled with its rpc system: grpc), there are no encoding/decoding steps. You can find more details on the Capn'proto website. In this article we will focus on the RPC part of Capn'proto with Rust. In this

Getting started with Capn'proto RPC for Rust