Rust on FreeBSD

I'm interested in using Rust on FreeBSD. Rust FreeBSD is Tier 2. Should this be any cause of concern or is it mainly simply a matter of the logistics of establishing FreeBSD CI for the standard Rust test suites?
 
Rust on FreeBSD is comfortable to use.

You can install it without issue with rustup.

Several of us will fix anything Linux-centric in Rust build mechanisms (see for example two of my commits against rust language repository here and here from 2017)

When I needed a solution we can call both from CLI and HTTP API to trigger a deployment, I wrote Rust code to explicitly target FreeBSD servers without any hesitation: https://devcentral.nasqueron.org/source/alkane/

_____

The issues you could encounter in the past are for crates targeting libc to do OS-specific things, or with heuristics for every OS, but nowadays, FreeBSD support has been added to most of them.
 
Back
Top