-
-
Notifications
You must be signed in to change notification settings - Fork 785
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
Unstable functionality in Serde #812
Comments
Feature |
Submitted #898 for |
593bcb0 breaks the unstable feature because you removed the |
The |
Thanks so much for the clarification, I didn't realize I was using an outdated nightly! |
I updated the list to reflect functionality that was stabilized in Serde 1.0.60 and 1.0.61. These are no longer behind the |
Added |
See also serde-rs#812 for other unstable functionality in serde. Fixes serde-rs#1952
Added |
Would it be appropriate to add support for |
Before: $ cargo +nightly build --no-default-features --features unstable Compiling serde v1.0.177 (/srv/mpn/serde/serde) error[E0432]: unresolved import `std_error` --> serde/src/de/mod.rs:134:9 134 | pub use std_error::Error as StdError; | ^^^^^^^^^ maybe a missing crate `std_error`? After: $ cargo +nightly build --no-default-features --features unstable Compiling serde v1.0.177 (/srv/mpn/serde/serde) Finished dev [unoptimized] target(s) in 1.28s Note that `unstable` and non-`std` tests are still failing. Issue: serde-rs#812
Before: $ cargo +nightly build --no-default-features --features unstable Compiling serde v1.0.177 (/srv/mpn/serde/serde) error[E0432]: unresolved import `std_error` --> serde/src/de/mod.rs:134:9 134 | pub use std_error::Error as StdError; | ^^^^^^^^^ maybe a missing crate `std_error`? After: $ cargo +nightly build --no-default-features --features unstable Compiling serde v1.0.177 (/srv/mpn/serde/serde) Finished dev [unoptimized] target(s) in 1.28s Note that `unstable` and non-`std` tests are still failing. Issue: serde-rs#812
Error in core has been stabilized. Would it be appropriate to make |
Currently unstable
!
to a type (RFC 1216) rust-lang/rust#35121!
Stabilized
CString::into_boxed_c_str
From<&[T]> for Rc
& co rust-lang/rust#40475From<Box<T>> for Rc<T> / Arc<T>
Error
incore
rust-lang/rust#103765Removed
The text was updated successfully, but these errors were encountered: