summaryrefslogtreecommitdiffstats
path: root/tokio/src/net/addr.rs
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-11-05 19:12:30 -0800
committerGitHub <noreply@github.com>2019-11-05 19:12:30 -0800
commitd5c1119c881c9a8b511aa9000fd26b9bda014256 (patch)
tree72e2ca6b655f29e948a91ba4573a95350cb241e0 /tokio/src/net/addr.rs
parenta6253ed05a1e0d14bc64915f5937c29092df9497 (diff)
runtime: combine `executor` and `runtime` mods (#1734)
Now, all types are under `runtime`. `executor::util` is moved to a top level `util` module.
Diffstat (limited to 'tokio/src/net/addr.rs')
-rw-r--r--tokio/src/net/addr.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tokio/src/net/addr.rs b/tokio/src/net/addr.rs
index 812964da..8fe02b4e 100644
--- a/tokio/src/net/addr.rs
+++ b/tokio/src/net/addr.rs
@@ -1,4 +1,4 @@
-use crate::executor::blocking;
+use crate::runtime::blocking;
use futures_util::future;
use std::io;
@@ -143,7 +143,7 @@ pub(crate) mod sealed {
//! part of the `ToSocketAddrs` public API. The details will change over
//! time.
- use crate::executor::blocking::Blocking;
+ use crate::runtime::blocking::Blocking;
use futures_core::ready;
use std::future::Future;