diff --git a/fantoch/Cargo.toml b/fantoch/Cargo.toml index 996e53a8a..81fdf09c6 100644 --- a/fantoch/Cargo.toml +++ b/fantoch/Cargo.toml @@ -19,7 +19,7 @@ ahash = "0.6.2" bincode = "1.3.1" bytes = "1.0.0" color-eyre = "0.5.10" -dashmap = { git = "https://github.com/vitorenesduarte/dashmap", rev = "82deaa28771f225d3969b451fee30a3b9047514b" } +dashmap = "4.0.0" flate2 = "1.0.19" futures = { version = "0.3.8", default-features = false, features = ["alloc"] } griddle = { version = "0.4.1", features = ["serde"], optional = true } diff --git a/fantoch/src/shared.rs b/fantoch/src/shared.rs index 223a5258b..e165adc93 100644 --- a/fantoch/src/shared.rs +++ b/fantoch/src/shared.rs @@ -1,7 +1,7 @@ -use ahash::RandomState; use dashmap::iter::Iter; use dashmap::mapref::one::Ref; use dashmap::DashMap; +use std::collections::hash_map::RandomState; use std::collections::BTreeSet; use std::hash::Hash; diff --git a/fantoch_prof/Cargo.toml b/fantoch_prof/Cargo.toml index 0d0b8143d..77e523f46 100644 --- a/fantoch_prof/Cargo.toml +++ b/fantoch_prof/Cargo.toml @@ -7,7 +7,7 @@ authors = ["Vitor Enes "] license = "MIT/Apache-2.0" [dependencies] -dashmap = { git = "https://github.com/vitorenesduarte/dashmap", rev = "4cabdf423002be85fe5ecbf7308dbd9754d33011" } +dashmap = "4.0.0" jemallocator = "0.3.2" quanta = "0.6.5" serde = { version = "1.0.118", features = ["derive"] }