diff --git a/Cargo.toml b/Cargo.toml index 1c19dcf..5b05bcd 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.2" +version = "0.7.3" edition = "2021" repository = "https://github.com/pegasus-aero/rt-embedded-redis" readme = "README.md" diff --git a/src/commands/hgetall.rs b/src/commands/hgetall.rs index 73761ad..c4db5c5 100644 --- a/src/commands/hgetall.rs +++ b/src/commands/hgetall.rs @@ -115,7 +115,6 @@ pub struct HashResponse { } impl HashResponse { - #[cfg(test)] pub fn new(inner: BTreeMap) -> Self { Self { inner } }