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, }