diff --git a/Cargo.toml b/Cargo.toml index 53e96ab..1c19dcf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ keywords = ["redis", "network", "no_std", "database"] categories = ["embedded", "database", "no-std"] authors = ["PEGASUS GmbH "] 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" diff --git a/src/commands/get.rs b/src/commands/get.rs index 0acdd62..2de5614 100644 --- a/src/commands/get.rs +++ b/src/commands/get.rs @@ -129,7 +129,7 @@ impl GetCommand { } ///Abstraction of GET response -#[cfg_attr(test, derive(Debug))] +#[derive(Debug)] pub struct GetResponse { inner: Bytes, } diff --git a/src/commands/hgetall.rs b/src/commands/hgetall.rs index bce2cbc..73761ad 100644 --- a/src/commands/hgetall.rs +++ b/src/commands/hgetall.rs @@ -108,7 +108,7 @@ impl HashGetAllCommand { } } -#[cfg_attr(test, derive(Debug))] +#[derive(Debug)] pub struct HashResponse { /// Field/Value map inner: BTreeMap,