File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1919// Support using Serde without the standard library!
2020#![ cfg_attr( not( feature = "std" ) , no_std) ]
2121// Show which crate feature enables conditionally compiled APIs in documentation.
22- #![ cfg_attr( docsrs, feature( docsrs) ) ]
22+ #![ cfg_attr( docsrs, feature( doc_cfg, rustdoc_internals) ) ]
23+ #![ cfg_attr( docsrs, allow( internal_features) ) ]
2324// Unstable functionality only if the user asks for it. For tracking and
2425// discussion of these features please refer to this issue:
2526//
2627// https://github.com/serde-rs/serde/issues/812
27- #![ cfg_attr( feature = "unstable" , feature( error_in_core , never_type) ) ]
28+ #![ cfg_attr( feature = "unstable" , feature( never_type) ) ]
2829#![ allow( unknown_lints, bare_trait_objects, deprecated) ]
2930// Ignored clippy and clippy_pedantic lints
3031#![ allow(
You can’t perform that action at this time.
0 commit comments