File tree 3 files changed +3
-5
lines changed
3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -64,4 +64,4 @@ matrix:
64
64
65
65
script :
66
66
- cargo check --features unstable --all --benches --bins --examples --tests
67
- - cargo test --features unstable --all
67
+ - cargo test --all --docs --features unstable
Original file line number Diff line number Diff line change @@ -56,13 +56,10 @@ pub mod task;
56
56
57
57
cfg_if ! {
58
58
if #[ cfg( any( feature = "unstable" , feature = "docs" ) ) ] {
59
+ pub mod pin;
59
60
mod vec;
60
61
mod result;
61
62
}
62
63
}
63
64
64
- #[ cfg_attr( feature = "docs" , doc( cfg( unstable) ) ) ]
65
- #[ cfg( feature = "unstable" ) ]
66
- pub mod pin;
67
-
68
65
pub ( crate ) mod utils;
Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ cfg_if! {
96
96
( $a: lifetime, $o: ty) => ( DynFuture <$a, $o>) ;
97
97
}
98
98
} else {
99
+ #[ allow( unused_macros) ]
99
100
macro_rules! dyn_ret {
100
101
( $a: lifetime, $o: ty) => ( Pin <Box <dyn core:: future:: Future <Output = $o> + Send + ' a>>)
101
102
}
You can’t perform that action at this time.
0 commit comments