Move salsa fork in-tree

This commit is contained in:
Lukas Wirth 2024-02-07 16:29:46 +01:00
parent 1974e7490d
commit 159a03ad7b
69 changed files with 9478 additions and 41 deletions

3
crates/salsa/src/hash.rs Normal file
View file

@ -0,0 +1,3 @@
pub(crate) type FxHasher = std::hash::BuildHasherDefault<rustc_hash::FxHasher>;
pub(crate) type FxIndexSet<K> = indexmap::IndexSet<K, FxHasher>;
pub(crate) type FxIndexMap<K, V> = indexmap::IndexMap<K, V, FxHasher>;