Skip to content

Commit 5c43a3a

Browse files
authored
[Turbopack] add optimization based on upper count (#71606)
### What? Performance optimization
1 parent 5ba5370 commit 5c43a3a

File tree

9 files changed

+560
-68
lines changed

9 files changed

+560
-68
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ sourcemap = "9.0.0"
204204
strsim = "0.11.1"
205205
syn = "1.0.107"
206206
tempfile = "3.3.0"
207+
thread_local = "1.1.8"
207208
thiserror = "1.0.48"
208209
tiny-gradient = "0.1.0"
209210
tokio = "1.25.0"

turbopack/crates/turbo-tasks-backend/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ workspace = true
1515
[features]
1616
default = []
1717
verify_serialization = []
18+
trace_aggregation_update = []
1819

1920
[dependencies]
2021
anyhow = { workspace = true }
@@ -39,7 +40,7 @@ smallvec = { workspace = true }
3940
tokio = { workspace = true }
4041
tokio-scoped = "0.2.0"
4142
tracing = { workspace = true }
42-
thread_local = { version = "1.1.8" }
43+
thread_local = { workspace = true }
4344
turbo-prehash = { workspace = true }
4445
turbo-tasks = { workspace = true }
4546
turbo-tasks-hash = { workspace = true }

0 commit comments

Comments
 (0)