|
|
|
|
|
by kibwen
1580 days ago
|
|
Rust feature flags aren't the same as Haskell feature flags. In Haskell you design your own programming language by selecting which extensions to enable. In Rust, feature flags only exist on the unstable nightly compiler and either get folded into the language proper or deprecated and dropped entirely. It's not a combinatorial explosion of interacting extensions, it's a single base for everyone that grows over time. |
|
https://doc.rust-lang.org/cargo/reference/features-examples....