From f48c1d613e054515738426fd39ea1282d52c6dd8 Mon Sep 17 00:00:00 2001 From: Dan Harris Date: Fri, 20 Oct 2023 16:43:29 -0400 Subject: [PATCH] make tags public --- object_store/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/object_store/src/lib.rs b/object_store/src/lib.rs index decaf7096518..f2eff41dd496 100644 --- a/object_store/src/lib.rs +++ b/object_store/src/lib.rs @@ -705,7 +705,7 @@ pub struct GetOptions { #[derive(Debug, Default)] pub struct PutOptions { /// Key/Value metadata associated with the object - tags: HashMap, + pub tags: HashMap, } impl GetOptions {