Skip to content

Commit a55b970

Browse files
committed
chore(deps): oxc-sourcemap v4.0 (#12347)
This release removes rayon support from oxc-sourcemap. Parallelizing functions calls locally inside sourcemap generation is not optimal, they interfere with thread scheduling with the rest of the system
1 parent eb12132 commit a55b970

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ javascript-globals = "1"
160160
oxc-browserslist = "2"
161161
oxc_index = "3"
162162
oxc_resolver = "11"
163-
oxc_sourcemap = "3"
163+
oxc_sourcemap = "4"
164164

165165
#
166166
allocator-api2 = "=0.2.21"

napi/minify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ oxc_diagnostics = { workspace = true }
2828
oxc_minifier = { workspace = true }
2929
oxc_napi = { workspace = true }
3030
oxc_parser = { workspace = true }
31-
oxc_sourcemap = { workspace = true, features = ["napi", "rayon"] }
31+
oxc_sourcemap = { workspace = true, features = ["napi"] }
3232
oxc_span = { workspace = true }
3333
oxc_syntax = { workspace = true }
3434

napi/transform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ doctest = false
2424
[dependencies]
2525
oxc = { workspace = true, features = ["full"] }
2626
oxc_napi = { workspace = true }
27-
oxc_sourcemap = { workspace = true, features = ["napi", "rayon"] }
27+
oxc_sourcemap = { workspace = true, features = ["napi"] }
2828

2929
rustc-hash = { workspace = true }
3030

0 commit comments

Comments
 (0)