File tree 2 files changed +1
-6
lines changed
2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ default = [
26
26
" async-task" ,
27
27
" crossbeam-channel" ,
28
28
" crossbeam-deque" ,
29
- " futures-timer" ,
30
29
" kv-log-macro" ,
31
30
" log" ,
32
31
" mio" ,
@@ -42,6 +41,7 @@ std = [
42
41
" crossbeam-utils" ,
43
42
" futures-core/std" ,
44
43
" futures-io" ,
44
+ " futures-timer" ,
45
45
" memchr" ,
46
46
" once_cell" ,
47
47
" pin-utils" ,
Original file line number Diff line number Diff line change @@ -257,11 +257,6 @@ macro_rules! extension_trait {
257
257
$( #[ cfg( feature = "docs" ) ] $imp) *
258
258
} ;
259
259
260
- // Optimization: expand `$head` eagerly before starting a new method definition.
261
- ( @ext ( $( $head: tt) * ) #[ doc = $d: literal] $( $tail: tt) * ) => {
262
- $( $head) * extension_trait!( @ext ( #[ doc = $d] ) $( $tail) * ) ;
263
- } ;
264
-
265
260
// Parse the return type in an extension method.
266
261
( @doc ( $( $head: tt) * ) -> impl Future <Output = $out: ty> $( + $lt: lifetime) ? [ $f: ty] $( $tail: tt) * ) => {
267
262
extension_trait!( @doc ( $( $head) * -> owned:: ImplFuture <$out>) $( $tail) * ) ;
You can’t perform that action at this time.
0 commit comments