-
-
Notifications
You must be signed in to change notification settings - Fork 480
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use associated constants where applicable #123
Comments
Will associated constant be part of the 1.0 release? For the time being, I'd prefer to wait until the stable compiler is shipped (next week IIRC) so that we have a clear view of what could end up on the master branch or not. In the future, I believe we could maintain a second major development branch (the first one being "master") called, say, "nightly" or "unstable" that compiles using the nightly version of the rust compiler. |
They will definitely not be on the 1.0 release. btw, I also realized that associated constants don't quite work yet, as I tried to make the Anyway, it might be sensible to try this two-branch approach. But I'd be hesitant to do this, unless we actually use many unstable features at once. For isolated issues such as this it might make sense to just maintain feature branches and keep them up-to-date as the master branch evolves, until the underlying features get stabilized and they can finally be merged. |
Two years later, given that associated constants are still in the process of being stabilized, I am closing this for now. Anyway, with the advent of |
Since rust-lang/rust#23606 has been merged now on the unstable branch, we can start experimenting with associated constants in this crate. This should most likely not be merged into the master branch right away, as it will only work on the nightlies. Also it will be a breaking change naturally.
Of course, this raises the question, how we want to deal with unstable features in general. Thoughts?
The text was updated successfully, but these errors were encountered: