Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

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

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,39 +75,39 @@ multiple_crate_versions = "allow"
name = "resolver"

[dependencies]
dashmap = "6.0.1"
serde = { version = "1.0.203", features = ["derive"] } # derive for Deserialize from package.json
serde_json = { version = "1.0.117", features = [
dashmap = "6.1.0"
serde = { version = "1.0.228", features = ["derive"] } # derive for Deserialize from package.json
serde_json = { version = "1.0.145", features = [
"preserve_order",
] } # preserve_order: package_json.exports requires order such as `["require", "import", "default"]`
tracing = "0.1.40"
tracing = "0.1.41"

simd-json = { version = "0.17.0", features = ["serde_impl", "runtime-detection"], default-features = false }

cfg-if = "1.0"
dunce = "1.0.4" # Normalize Windows paths to the most compatible format, avoiding UNC where possible
indexmap = { version = "2.2.6", features = ["serde"] }
json-strip-comments = "1.0.2"
rustc-hash = { version = "2.0.0", default-features = false, features = ["std"] }
dunce = "1.0.5" # Normalize Windows paths to the most compatible format, avoiding UNC where possible
indexmap = { version = "2.12.0", features = ["serde"] }
json-strip-comments = "3.0.1"
rustc-hash = { version = "2.1.1", default-features = false, features = ["std"] }
thiserror = "2.0.17"

pnp = { version = "0.12.5", optional = true }

async-trait = "0.1.84"
async-trait = "0.1.89"
document-features = { version = "0.2.8", optional = true }
futures = "0.3.31"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1.47.1", default-features = false, features = ["sync", "rt-multi-thread", "macros", "fs"] }
tokio = { version = "1.48.0", default-features = false, features = ["sync", "rt-multi-thread", "macros", "fs"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
tokio = { version = "1.47.1", default-features = false, features = ["sync", "rt", "macros"] }
tokio = { version = "1.48.0", default-features = false, features = ["sync", "rt", "macros"] }

[dev-dependencies]
criterion2 = { version = "2.0.0", default-features = false, features = ["async_tokio"] }
normalize-path = { version = "0.2.1" }
rayon = { version = "1.10.0" }
regex = "1.11.1"
vfs = "0.12.0" # for testing with in memory file system
rayon = { version = "1.11.0" }
regex = "1.12.2"
vfs = "0.12.2" # for testing with in memory file system

[features]
default = ["yarn_pnp"]
Expand Down