Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

Commit

Permalink
misc: add missed Clone to ObjDest
Browse files Browse the repository at this point in the history
  • Loading branch information
pleshevskiy committed Jul 18, 2022
1 parent b6d33d8 commit d477375
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sonic-channel"
version = "1.0.0"
version = "1.0.1"
authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
description = "Rust client for sonic search backend"
categories = ["api-bindings"]
Expand Down
2 changes: 1 addition & 1 deletion src/misc.rs
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down

0 comments on commit d477375

Please sign in to comment.