summaryrefslogtreecommitdiff
path: root/vendor/hyper-util/src/rt/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/hyper-util/src/rt/mod.rs')
-rw-r--r--vendor/hyper-util/src/rt/mod.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/hyper-util/src/rt/mod.rs b/vendor/hyper-util/src/rt/mod.rs
new file mode 100644
index 00000000..71363ccd
--- /dev/null
+++ b/vendor/hyper-util/src/rt/mod.rs
@@ -0,0 +1,12 @@
+//! Runtime utilities
+
+#[cfg(feature = "client-legacy")]
+mod io;
+#[cfg(feature = "client-legacy")]
+pub(crate) use self::io::{read, write_all};
+
+#[cfg(feature = "tokio")]
+pub mod tokio;
+
+#[cfg(feature = "tokio")]
+pub use self::tokio::{TokioExecutor, TokioIo, TokioTimer};