StoicDeveloper / mapped_futures

A Rust library for mapping keys for futures, running the futures out of order, and retreiving or stopping them by their key.
GNU General Public License v3.0
6 stars 2 forks source link

re-export to the root lib.rs #2

Open olekspickle opened 9 months ago

olekspickle commented 9 months ago

The only purpose of such crates is to provide structures, so would be nice to use it just as:


use mapped_futures::MappedFutures;
// or
use mapped_futures::prelude::*;

instead of

use mapped_futures::mapped_futures::MappedFutures;