#+title: Why you shouldn't obsess about Rust "features"
- source :: [[https://nullderef.com/blog/rust-features/][Why you shouldn't obsess about Rust "features" | NullDeref]]

* Notes
[[file:../20200705154112-rust.org][Rust]] features allow for conditional compilation.

The author managed to not need features, and instead was able to write a
=Config= struct.

Features are a big deal and you should avoid using them unless you absolutely
need conditional compilation.