Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions vest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vest_lib"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
license = "MIT"
description = "VestLib: A library of formally verified parser and serializer combinators"
Expand All @@ -18,8 +18,6 @@ std = []

[dependencies]
vstd = "=0.0.0-2026-01-11-0057"
#verus_builtin = "0.0.0-2025-08-12-1837"
#verus_builtin_macros = "0.0.0-2025-12-07-0054"

#vstd = { git = "https://github.com/verus-lang/verus", branch = "main" }
#verus_builtin = { git = "https://github.com/verus-lang/verus", branch = "main" }
Expand Down
1 change: 1 addition & 0 deletions vest/src/regular/variant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,7 @@ impl<Fst, Snd> SecureSpecCombinator for OptThen<Fst, Snd> where
}

proof fn lemma_prefix_secure(&self, s1: Seq<u8>, s2: Seq<u8>) {
vstd::slice::axiom_slice_ext_equal(&[true], &[true]);
if Fst::is_prefix_secure() && Snd::is_prefix_secure() {
self.0.0.0.lemma_prefix_secure(s1, s2);
self.0.0.lemma_parse_length(s1);
Expand Down