From 64079f50c337cf87f42e82216ca5b9185eea565e Mon Sep 17 00:00:00 2001 From: Hamid Date: Thu, 3 Jul 2025 11:58:57 +0200 Subject: [PATCH] bump version and derive Clone in HdfsObjectStore --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9b55ba6..74a4fb3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hdfs-native-object-store" -version = "1.0.1" +version = "1.0.2" edition = "2021" authors = ["Adam Binford "] homepage = "https://github.com/datafusion-contrib/hdfs-native-object-store" diff --git a/src/lib.rs b/src/lib.rs index 3e2bee0..633cb3e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -45,7 +45,7 @@ pub type Client = HopsClient; use crate::client::ReadRangeStream; pub use crate::client::{FileStatus, FileWriter, HdfsError, WriteOptions}; -#[derive(Debug)] +#[derive(Debug, Clone)] pub struct HdfsObjectStore { client: Arc, }