File tree Expand file tree Collapse file tree 7 files changed +0
-7
lines changed Expand file tree Collapse file tree 7 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ optimize_for_size = ["core/optimize_for_size"]
32
32
[lints .rust .unexpected_cfgs ]
33
33
level = " warn"
34
34
check-cfg = [
35
- ' cfg(bootstrap)' ,
36
35
' cfg(no_global_oom_handling)' ,
37
36
' cfg(no_rc)' ,
38
37
' cfg(no_sync)' ,
Original file line number Diff line number Diff line change 66
66
) ]
67
67
#![ doc( cfg_hide(
68
68
not( test) ,
69
- not( any( test, bootstrap) ) ,
70
69
no_global_oom_handling,
71
70
not( no_global_oom_handling) ,
72
71
not( no_rc) ,
Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ harness = false
39
39
[lints .rust .unexpected_cfgs ]
40
40
level = " warn"
41
41
check-cfg = [
42
- ' cfg(bootstrap)' ,
43
42
' cfg(no_global_oom_handling)' ,
44
43
' cfg(no_rc)' ,
45
44
' cfg(no_sync)' ,
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ debug_typeid = []
29
29
[lints .rust .unexpected_cfgs ]
30
30
level = " warn"
31
31
check-cfg = [
32
- ' cfg(bootstrap)' ,
33
32
' cfg(no_fp_fmt_parse)' ,
34
33
# core use #[path] imports to portable-simd `core_simd` crate
35
34
# and to stdarch `core_arch` crate which messes-up with Cargo list
Original file line number Diff line number Diff line change @@ -1092,7 +1092,6 @@ pub use self::unsafe_pinned::UnsafePinned;
1092
1092
#[ rustc_pub_transparent]
1093
1093
#[ derive( Copy , Clone ) ]
1094
1094
pub struct Pin < Ptr > {
1095
- /// Only public for bootstrap.
1096
1095
pointer : Ptr ,
1097
1096
}
1098
1097
Original file line number Diff line number Diff line change @@ -157,7 +157,6 @@ test = true
157
157
[lints .rust .unexpected_cfgs ]
158
158
level = " warn"
159
159
check-cfg = [
160
- ' cfg(bootstrap)' ,
161
160
# std use #[path] imports to portable-simd `std_float` crate
162
161
# and to the `backtrace` crate which messes-up with Cargo list
163
162
# of declared features, we therefor expect any feature cfg
Original file line number Diff line number Diff line change 237
237
#![ doc( rust_logo) ]
238
238
#![ doc( cfg_hide(
239
239
not( test) ,
240
- not( any( test, bootstrap) ) ,
241
240
no_global_oom_handling,
242
241
not( no_global_oom_handling)
243
242
) ) ]
You can’t perform that action at this time.
0 commit comments