-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Support stable rust #8316
Labels
Milestone
Comments
This was referenced Dec 4, 2023
This was referenced Dec 5, 2023
Closing as done. Thank you, @magic-akari |
This closed issue has been automatically locked because it had no new activity for a month. If you are running into a similar issue, please create a new issue with the steps to reproduce. Thank you. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Describe the feature
There are a few places where
#[feature(box_patterns)]
is used, mostly in css but also in one HTML crate:Additionally, there is a
#![feature(type_name_of_val)]
and#![feature(never_type)]
in swc_estree_compat.Babel plugin or link to the feature description
No response
Additional context
#![feature(...)]
enables nightly features, and means that such crates cannot work on stable Rust. It also means the code is susceptible to rot as the feature is adjusted, reworked, removed, or even stabilized. Removing the nightly requirement allows code to stay functional for a longer amount of time.The text was updated successfully, but these errors were encountered: