summaryrefslogtreecommitdiffstats
path: root/tokio/src/util/mod.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/util/mod.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/util/mod.rs')
-rw-r--r--tokio/src/util/mod.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/tokio/src/util/mod.rs b/tokio/src/util/mod.rs
new file mode 100644
index 00000000..44377fcf
--- /dev/null
+++ b/tokio/src/util/mod.rs
@@ -0,0 +1,5 @@
+mod pad;
+pub(crate) use self::pad::CachePadded;
+
+mod rand;
+pub(crate) use self::rand::FastRand;