Reputation: 738
I am trying to understand the difference between rust nightly and the beta version. They both seem to be suitable for cases when one needs to use experimental features, but I can't really find the exact difference.
Upvotes: 6
Views: 1945
Reputation: 98348
In the Rust ecosystem, these are called channels. There are three official channels:
To sum up: use stable to do normal work; use nightly to experiment with unstable features; use beta to test the next Rust version and get ahead of possible future problems.
Upvotes: 10