You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm testing this on WSL with cargo verus verify and running into errors on all three of CapybaraKV, multilog, and pmemlog. I tried cargo clean, rustup update, and updating the rust-toolchain.toml file for CapybaraKV to use the nightly-2025-09-01 toolchain version (which corresponds to Rust 1.91.0, which I think is the current version used by Verus?) but none resolved the errors.
The errors are all either missing traits or unresolved imports for types in core::marker. E.g.:
error[E0432]: unresolved import `core::marker::PointeeSized`
--> /home/hayley/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vstd-0.0.0-2025-11-30-0053/std_specs/cmp.rs:6:5
|
6 | use core::marker::PointeeSized;
| ^^^^^^^^^^^^^^------------
| | |
| | help: a similar name exists in the module: `PointerLike`
| no `PointeeSized` in `marker`
and
error[E0405]: cannot find trait `MetaSized` in module `core::marker`
--> /home/hayley/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vstd-0.0.0-2025-11-30-0053/std_specs/ops.rs:53:31
|
53 | pub trait $extrait<Rhs = Self> {
| ^^^^^^^^^^^^ not found in `core::marker`
...
109 | / def_bin_ops_spec!(
110 | | core::ops::Sub,
111 | | ExSub,
112 | | SubSpec,
... |
117 | | sub_spec
118 | | );
| |_- in this macro invocation
|
= note: this error originates in the macro `def_bin_ops_spec` (in Nightly builds, run with -Z macro-backtrace for more info)
Did you run into these when updating the Verus version for this PR?
Ah, thanks, I was missing some other places where the Rust version was specified as 1.88.0 rather than the 1.91.0 that modern Verus uses. It now works for me on WSL. Could you please try again?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.