Skip to content

Commit 3ffb961

Browse files
authored
Fix scylla dep to 1.1; doesn't build with later versions. (#4661)
## Motivation `cargo update && cargo build -p linera-views --features scylladb` currently fails, because some types in `scylla` are `Sync` in 1.1 but not 1.2 and later. This breaks `cargo install` in some cases. Thanks to @kikakkz for pointing this out! ## Proposal Fix the dependency to 1.1. ## Test Plan I did `cargo update` with this change and everything compiled without errors. (In a separate PR, we could commit the updated lock file, too.) ## Release Plan - These changes should be backported to `testnet_conway`, then - be released in a new SDK. ## Links - [reviewer checklist](https://github.com/linera-io/linera-protocol/blob/main/CONTRIBUTING.md#reviewer-checklist)
1 parent 32355d3 commit 3ffb961

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
@@ -213,7 +213,7 @@ revm-state = { version = "4.0.1", default-features = false, features = [
213213
] }
214214
rocksdb = "0.21.0"
215215
ruzstd = "0.8.1"
216-
scylla = "1.1.0"
216+
scylla = "~1.1.0"
217217
semver = "1.0.22"
218218
serde = { version = "1.0.197", features = ["derive"] }
219219
serde-command-opts = "0.1.1"

0 commit comments

Comments
 (0)