From 1f4538b2f8ff79e25e38dc3804cd1d25f6629302 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Misty=20De=20M=C3=A9o?= Date: Thu, 6 Jun 2024 11:43:02 -0700 Subject: [PATCH] feat: pub use reqwest --- src/remote.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/remote.rs b/src/remote.rs index ee11118..9ca6055 100644 --- a/src/remote.rs +++ b/src/remote.rs @@ -3,6 +3,9 @@ use std::path::{Path, PathBuf}; use camino::{Utf8Path, Utf8PathBuf}; +// Simplifies raw access to reqwest without depending on a separate copy +pub use reqwest; + use crate::error::*; /// A remote asset is an asset that is fetched over the network.