Skip to content

Commit 3c4ddf2

Browse files
authored
chore(deps): bump deps (#605)
1 parent 5f782a9 commit 3c4ddf2

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,12 @@ thiserror = "2"
9090
tracing = "0.1"
9191
url = "2"
9292

93-
pnp = { version = "0.11.0", optional = true }
93+
pnp = { version = "0.12.0", optional = true }
9494

9595
document-features = { version = "0.2.11", optional = true }
9696

9797
[dev-dependencies]
98-
criterion2 = { version = "3.0.0", default-features = false }
98+
criterion2 = { version = "3.0.1", default-features = false }
9999
dirs = { version = "6.0.0" }
100100
normalize-path = { version = "0.2.1" }
101101
pico-args = "0.5.0"

napi/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ napi-derive = { version = "3.0.0-beta" }
2727
tracing-subscriber = { version = "0.3.19", optional = true, default-features = false, features = ["std", "fmt"] } # Omit the `regex` feature
2828

2929
[target.'cfg(not(any(target_os = "linux", target_os = "freebsd", target_arch = "arm", target_family = "wasm")))'.dependencies]
30-
mimalloc-safe = { version = "0.1.53", optional = true, features = ["skip_collect_on_exit"] }
30+
mimalloc-safe = { version = "0.1.54", optional = true, features = ["skip_collect_on_exit"] }
3131

3232
[target.'cfg(all(target_os = "linux", not(target_arch = "arm"), not(target_arch = "aarch64")))'.dependencies]
33-
mimalloc-safe = { version = "0.1.53", optional = true, features = ["skip_collect_on_exit", "local_dynamic_tls"] }
33+
mimalloc-safe = { version = "0.1.54", optional = true, features = ["skip_collect_on_exit", "local_dynamic_tls"] }
3434

3535
[target.'cfg(all(target_os = "linux", target_arch = "aarch64"))'.dependencies]
36-
mimalloc-safe = { version = "0.1.53", optional = true, features = ["skip_collect_on_exit", "local_dynamic_tls", "no_opt_arch"] }
36+
mimalloc-safe = { version = "0.1.54", optional = true, features = ["skip_collect_on_exit", "local_dynamic_tls", "no_opt_arch"] }
3737

3838
[build-dependencies]
3939
napi-build = "2.2.2"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@ impl<Fs: FileSystem> ResolverGeneric<Fs> {
950950
let mut path = cached_path.to_path_buf();
951951
path.push("");
952952

953-
let resolution = pnp::resolve_to_unqualified_via_manifest(pnp_manifest, specifier, path);
953+
let resolution = pnp::resolve_to_unqualified_via_manifest(pnp_manifest, specifier, &path);
954954

955955
match resolution {
956956
Ok(pnp::Resolution::Resolved(path, subpath)) => {

0 commit comments

Comments
 (0)