You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
trace_macros doesn't need to stay there, it is only used occasionally for macro debugging.
fnbox is used in a few places because it seems impossible to send fns across thread boundaries otherwise.
refcell_replace_swap is probably not necessary.
I don't remember what const_fn is, and I don't know anything about libc.
This issue will probably be pretty long-lived, as there are several features we use that rely upon nightly:
#![feature(const_fn)]
#![feature(fnbox)]
#![feature(libc)]
<- perhaps we could fix this by using thelibc
crate?#![feature(refcell_replace_swap)]
<- waiting for landing in stable#![feature(trace_macros)]
<- This could probably be removed easily.#![feature(alloca)]
<- We almost certainly don't actually need this...mozjs
is currently nightly-only.The text was updated successfully, but these errors were encountered: