mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-29 02:52:11 +00:00
Bump salsa
This commit is contained in:
parent
a1f548bce2
commit
8029c731ed
20 changed files with 155 additions and 93 deletions
|
|
@ -5,8 +5,8 @@
|
|||
use std::fmt;
|
||||
|
||||
use fst::{IntoStreamer, Streamer};
|
||||
use nohash_hasher::IntMap;
|
||||
use rustc_hash::FxHashMap;
|
||||
use indexmap::IndexMap;
|
||||
use rustc_hash::{FxBuildHasher, FxHashMap};
|
||||
|
||||
use crate::{AnchoredPath, FileId, Vfs, VfsPath};
|
||||
|
||||
|
|
@ -14,7 +14,7 @@ use crate::{AnchoredPath, FileId, Vfs, VfsPath};
|
|||
#[derive(Default, Clone, Eq, PartialEq)]
|
||||
pub struct FileSet {
|
||||
files: FxHashMap<VfsPath, FileId>,
|
||||
paths: IntMap<FileId, VfsPath>,
|
||||
paths: IndexMap<FileId, VfsPath, FxBuildHasher>,
|
||||
}
|
||||
|
||||
impl FileSet {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue