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
The more flexible impls were set as unstable because they rely on From<Box<T>> for Rc<T> / Arc<T> -- rust-lang/rust#40475. This conversion was stabilized in Rust 1.21 so we should be able to use version detection through the Serde build.rs script to automatically provide the more flexible impls on sufficiently new compilers.
The text was updated successfully, but these errors were encountered:
Currently with
--features rc
we provide:and with
--features unstable,rc
:The more flexible impls were set as unstable because they rely on
From<Box<T>> for Rc<T> / Arc<T>
-- rust-lang/rust#40475. This conversion was stabilized in Rust 1.21 so we should be able to use version detection through the Serde build.rs script to automatically provide the more flexible impls on sufficiently new compilers.The text was updated successfully, but these errors were encountered: