Skip to content

Commit 8b70ce2

Browse files
authored
Fix test_project_publish. (#4894)
## Motivation `test_project_publish` started failing because ruzstd 0.8.2 was published and doesn't build with Rust 1.86.0. Due to #4742, we cannot upgrade to 1.87.0 or later at the moment. ## Proposal Fix the ruzstd version to `=0.8.1`. ## Test Plan CI should pass now. It fixed the test for me locally. ## Release Plan - These changes should be backported to `testnet_conway`. ## Links - [reviewer checklist](https://github.com/linera-io/linera-protocol/blob/main/CONTRIBUTING.md#reviewer-checklist)
1 parent eef99fc commit 8b70ce2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,9 @@ revm-state = { version = "4.0.1", default-features = false, features = [
212212
"serde",
213213
] }
214214
rocksdb = "0.21.0"
215-
ruzstd = "0.8.1"
215+
# 0.8.2 doesn't build with Rust 1.87. Remove `=` once
216+
# https://github.com/linera-io/linera-protocol/issues/4742 is resolved.
217+
ruzstd = "=0.8.1"
216218
scylla = "~1.1.0"
217219
semver = "1.0.22"
218220
serde = { version = "1.0.197", features = ["derive"] }

0 commit comments

Comments
 (0)