Sign in
opensecura
/
3p
/
tock
/
libtock-rs
/
0c9301a21e69e61bccf66c954f0cde321b3ccfb2
/
.
/
crates
/
futures-rs-0.3.29
/
futures
/
tests
/
macro-reexport
/
src
/
lib.rs
blob: 82f939b34349f2203ed1ff7f7155125e655059a3 [
file
] [
log
] [
blame
]
// normal reexport
pub
use
futures03
::{
join
,
select
,
select_biased
,
try_join
};
// reexport + rename
pub
use
futures03
::{
join
as
join2
,
select
as
select2
,
select_biased
as
select_biased2
,
try_join
as
try_join2
,
};