Skip to content

Commit 81e9664

Browse files
committed
fix(test): make dev-deps and deps version ranges match
otherwise, the benchmarks pick vm-memory 0.17.x but the library target can pick 0.16.y and then the benchmarks fail to compile (due to how the benchmarks utilize A/B-testing, this PR might fail CI similarly to linux-loader#210, in which case we'll need to force merge). Signed-off-by: Patrick Roy <patrick.roy@linux.dev>
1 parent a442262 commit 81e9664

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ vm-memory = ">=0.16.0,<=0.17.0"
3030

3131
[dev-dependencies]
3232
criterion = { version = "0.7.0", features = ["html_reports"] }
33-
vm-memory = { version = "0.17.0", features = ["backend-mmap"] }
33+
vm-memory = { version = ">=0.16.0,<=0.17.0", features = ["backend-mmap"] }
3434

3535
[[bench]]
3636
name = "main"

0 commit comments

Comments
 (0)