From f09e7add60a3e6b24be0b0da7fffdf29ba639e57 Mon Sep 17 00:00:00 2001 From: Friedel Ziegelmayer Date: Thu, 5 May 2022 17:51:50 +0200 Subject: [PATCH] fix: remove unused ahash dep (#329) Co-authored-by: raulk --- Cargo.lock | 1 - actors/market/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index efbdc8d43..2d9d599b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -629,7 +629,6 @@ dependencies = [ name = "fil_actor_market" version = "8.0.0-alpha.1" dependencies = [ - "ahash", "anyhow", "cid", "fil_actor_power", diff --git a/actors/market/Cargo.toml b/actors/market/Cargo.toml index ff8769a24..9a1468716 100644 --- a/actors/market/Cargo.toml +++ b/actors/market/Cargo.toml @@ -20,7 +20,6 @@ fvm_shared = { version = "0.6.1", default-features = false } fvm_ipld_bitfield = "0.5.1" num-traits = "0.2.14" num-derive = "0.3.3" -ahash = "0.7.6" serde = { version = "1.0.136", features = ["derive"] } cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] } log = "0.4.14"