chore: delete unused file (#2280)

The `blocking` module is not referenced in code. The file is left over
from an earlier refactor.
This commit is contained in:
Carl Lerche
2020-02-27 11:57:35 -08:00
committed by GitHub
parent c6fc1db698
commit bfdfb46fcd
-11
View File
@@ -1,11 +0,0 @@
#![cfg_attr(not(feature = "blocking"), allow(dead_code, unused_imports))]
//! Perform blocking operations from an asynchronous context.
cfg_blocking_impl! {
mod pool;
pub(crate) use pool::{spawn_blocking, BlockingPool, Spawner};
mod schedule;
mod task;
}