Skip to content

Commit

Permalink
Merge pull request #2 from zbraniecki/rustc_hash
Browse files Browse the repository at this point in the history
Switch from fxhash to rustc_hash
  • Loading branch information
kardeiz authored Jan 23, 2021
2 parents 77a646f + d5d3295 commit db3a103
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ keywords = ["typemap", "extensions", "hashmap"]
description = "Provides a typemap container with FxHashMap"

[dependencies]
fxhash = "0.2"
rustc-hash = "1"
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::any::{Any, TypeId};

use fxhash::FxHashMap;
use rustc_hash::FxHashMap;

use std::collections::hash_map;
use std::marker::PhantomData;
Expand Down Expand Up @@ -159,7 +159,7 @@ pub mod concurrent {

use std::any::{Any, TypeId};

use fxhash::FxHashMap;
use rustc_hash::FxHashMap;

use std::collections::hash_map;
use std::marker::PhantomData;
Expand Down

0 comments on commit db3a103

Please sign in to comment.