File tree 2 files changed +7
-6
lines changed 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 58
58
#![ no_std]
59
59
#![ needs_allocator]
60
60
61
- #![ deny( rust_2018_idioms) ]
62
- #![ allow( explicit_outlives_requirements) ]
63
-
64
61
#![ warn( deprecated_in_future) ]
65
62
#![ warn( missing_debug_implementations) ]
66
63
#![ deny( intra_doc_link_resolution_failure) ] // rustdoc is run without -D warnings
67
64
65
+ #![ deny( rust_2018_idioms) ]
66
+ #![ allow( explicit_outlives_requirements) ]
67
+
68
68
#![ cfg_attr( not( test) , feature( generator_trait) ) ]
69
69
#![ cfg_attr( test, feature( test) ) ]
70
70
Original file line number Diff line number Diff line change 205
205
// Don't link to std. We are std.
206
206
#![ no_std]
207
207
208
- #![ deny( missing_docs) ]
209
- #![ deny( intra_doc_link_resolution_failure) ]
210
- #![ deny( missing_debug_implementations) ]
208
+ //#![warn(deprecated_in_future)] // FIXME: std still has quite a few uses of `mem::uninitialized`
209
+ #![ warn( missing_docs) ]
210
+ #![ warn( missing_debug_implementations) ]
211
+ #![ deny( intra_doc_link_resolution_failure) ] // rustdoc is run without -D warnings
211
212
212
213
#![ deny( rust_2018_idioms) ]
213
214
#![ allow( explicit_outlives_requirements) ]
You can’t perform that action at this time.
0 commit comments