From a6c4db93a7d7355345585dcf4c5ba07b09dfe2bf Mon Sep 17 00:00:00 2001 From: "Brian R. Murphy" <132495859+brmataptos@users.noreply.github.com> Date: Wed, 27 Nov 2024 14:54:53 -0800 Subject: [PATCH] get rid of warning when building `cargo build --profile ci -p aptos-types` --- types/src/state_store/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/src/state_store/mod.rs b/types/src/state_store/mod.rs index 7456b439d6287..9a47c407d074a 100644 --- a/types/src/state_store/mod.rs +++ b/types/src/state_store/mod.rs @@ -12,9 +12,9 @@ use crate::{ use aptos_crypto::HashValue; use bytes::Bytes; use move_core_types::move_resource::MoveResource; +use std::ops::Deref; #[cfg(any(test, feature = "testing"))] -use std::hash::Hash; -use std::{collections::HashMap, ops::Deref}; +use std::{collections::HashMap, hash::Hash}; pub mod errors; pub mod state_key;