This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs-object-store.git


The following commit(s) were added to refs/heads/main by this push:
     new 548bd28  Signer: reexport `url::Url` and `http::Method` types (#827)
548bd28 is described below

commit 548bd28196886f012e175be98e096487d6df1368
Author: Thomas Tanon <[email protected]>
AuthorDate: Mon Aug 17 22:39:04 2026 +0200

    Signer: reexport `url::Url` and `http::Method` types (#827)
    
    Allow downstream create to not have to explicitly import `url` and `http` 
crates to use the `Signer` trait
---
 src/signer.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/signer.rs b/src/signer.rs
index 47f3baa..f7a74b3 100644
--- a/src/signer.rs
+++ b/src/signer.rs
@@ -19,9 +19,9 @@
 
 use crate::{Result, path::Path};
 use async_trait::async_trait;
-use http::Method;
+pub use http::Method;
 use std::{fmt, time::Duration};
-use url::Url;
+pub use url::Url;
 
 /// Universal API to generate presigned URLs from multiple object store 
services.
 #[async_trait]

Reply via email to