diff --git a/Cargo.toml b/Cargo.toml index 0133c29..40cd606 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sonic-channel" -version = "1.0.0" +version = "1.0.1" authors = ["Dmitriy Pleshevskiy "] description = "Rust client for sonic search backend" categories = ["api-bindings"] diff --git a/src/misc.rs b/src/misc.rs index ecade21..727026f 100644 --- a/src/misc.rs +++ b/src/misc.rs @@ -1,5 +1,5 @@ /// Search data destination. Contains collection, bucket and object. -#[derive(Debug, PartialEq, Eq)] +#[derive(Debug, Clone, PartialEq, Eq)] pub struct ObjDest(Dest, String); impl ObjDest {