diff options
Diffstat (limited to 'vendor/hyper-util/src/common/mod.rs')
| -rw-r--r-- | vendor/hyper-util/src/common/mod.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/hyper-util/src/common/mod.rs b/vendor/hyper-util/src/common/mod.rs new file mode 100644 index 00000000..b45cd0b2 --- /dev/null +++ b/vendor/hyper-util/src/common/mod.rs @@ -0,0 +1,19 @@ +#![allow(missing_docs)] + +pub(crate) mod exec; +#[cfg(feature = "client")] +mod lazy; +pub(crate) mod rewind; +#[cfg(feature = "client")] +mod sync; +pub(crate) mod timer; + +#[cfg(feature = "client")] +pub(crate) use exec::Exec; + +#[cfg(feature = "client")] +pub(crate) use lazy::{lazy, Started as Lazy}; +#[cfg(feature = "client")] +pub(crate) use sync::SyncWrapper; + +pub(crate) mod future; |
