Skip to content

Commit

Permalink
Added Debug trait to GetResponse and HashResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
marius-meissner committed Feb 10, 2024
1 parent ab31a20 commit 96d1c06
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ keywords = ["redis", "network", "no_std", "database"]
categories = ["embedded", "database", "no-std"]
authors = ["PEGASUS GmbH <[email protected]>"]
license = "MIT OR Apache-2.0"
version = "0.7.1"
version = "0.7.2"
edition = "2021"
repository = "https://github.com/pegasus-aero/rt-embedded-redis"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/commands/get.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ impl GetCommand {
}

///Abstraction of GET response
#[cfg_attr(test, derive(Debug))]
#[derive(Debug)]
pub struct GetResponse {
inner: Bytes,
}
Expand Down
2 changes: 1 addition & 1 deletion src/commands/hgetall.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ impl HashGetAllCommand {
}
}

#[cfg_attr(test, derive(Debug))]
#[derive(Debug)]
pub struct HashResponse {
/// Field/Value map
inner: BTreeMap<Bytes, Bytes>,
Expand Down

0 comments on commit 96d1c06

Please sign in to comment.