Skip to content

Commit

Permalink
chore(deps): lock file maintenance rust crates (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 19, 2025
1 parent f435064 commit 40e4441
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ cfg-if = "1"
indexmap = { version = "2", features = ["serde"] }
json-strip-comments = "1"
once_cell = "1" # Use `std::sync::OnceLock::get_or_try_init` when it is stable.
papaya = "0.1.8"
papaya = "0.2.0"
rustc-hash = { version = "2" }
seize = { version = "0.4" }
seize = { version = "0.5" }
serde = { version = "1", features = ["derive"], optional = true } # derive for Deserialize from package.json
serde_json = { version = "1", features = ["preserve_order"], optional = true } # preserve_order: package_json.exports requires order such as `["require", "import", "default"]`
simdutf8 = { version = "0.1" }
Expand Down
4 changes: 2 additions & 2 deletions src/fs_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,12 @@ impl<Fs: FileSystem> FsCache<Fs> {
paths: HashSet::builder()
.hasher(BuildHasherDefault::default())
.resize_mode(papaya::ResizeMode::Blocking)
.collector(seize::Collector::new().epoch_frequency(None))
.collector(seize::Collector::new())
.build(),
tsconfigs: HashMap::builder()
.hasher(BuildHasherDefault::default())
.resize_mode(papaya::ResizeMode::Blocking)
.collector(seize::Collector::new().epoch_frequency(None))
.collector(seize::Collector::new())
.build(),
}
}
Expand Down

0 comments on commit 40e4441

Please sign in to comment.