Skip to content

Commit

Permalink
chore(turbopack): Update criterion (#72431)
Browse files Browse the repository at this point in the history
Noticed while looking through our lockfile that we were pulling in an extra version of clap because of this old version of criterion. Clap (particularly these older versions) is a pretty notoriously heavy crate, though we'd only need to compile it when building the benchmark targets.

Tested with:

```
TURBOPACK_BENCH_STRESS=yes cargo bench -p turbo-tasks-memory scope_stress
```

Closes PACK-3407
  • Loading branch information
bgw authored Nov 7, 2024
1 parent 6de2578 commit 45f3ec0
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 61 deletions.
84 changes: 24 additions & 60 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ clap = { version = "4.5.2", features = ["derive"] }
concurrent-queue = "2.5.0"
console = "0.15.5"
console-subscriber = "0.1.8"
criterion = "0.4.0"
criterion = "0.5.1"
crossbeam-channel = "0.5.8"
dashmap = "5.4.0"
dhat = { version = "0.3.2" }
Expand Down

0 comments on commit 45f3ec0

Please sign in to comment.