Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9e3bbf9
alloc::rc: add Kani contracts and proofs for Challenge 26
v3risec Apr 2, 2026
b4ffc78
add core::mem::forget(..) to fix verification failures; refactor some…
MinghuaWang Apr 3, 2026
e5a3bd4
refactor some harnesses with macro
MinghuaWang Apr 3, 2026
24dbf7f
refactor rc verification harnesses with macros; fix verification fail…
v3risec Apr 9, 2026
15c4506
Merge remote-tracking branch 'upstream/main' into challenge-26-rc
v3risec Apr 13, 2026
e189a7d
update rc verification harnesses with macros; fix verification failures
v3risec Apr 13, 2026
dc80500
fix rc Kani harness review issues
v3risec Apr 14, 2026
436a1b4
Add Rc raw allocator harnesses and refine assume_init slice harness
v3risec Apr 15, 2026
791d3cb
refine rc new harness
v3risec Apr 20, 2026
f6716a9
Merge branch 'main' into challenge-26-rc
feliperodri Apr 20, 2026
c1ed259
add bound for macOS env; restruct some harnesses
v3risec May 10, 2026
ef3529d
refactor harnesses to fix CI failures
v3risec May 12, 2026
fa334bc
Merge branch 'main' into challenge-26-rc
v3risec Jun 28, 2026
6fe27f5
Merge branch 'main' into challenge-26-rc
v3risec Aug 20, 2026
5e07de1
alloc: address Rc verification review feedback
v3risec Aug 21, 2026
d443b17
Merge branch 'main' into challenge-26-rc
v3risec Aug 21, 2026
3ff8aa8
Merge branch 'main' into challenge-26-rc
v3risec Aug 23, 2026
44d1d44
alloc: bound Rc get_mut slice harnesses
v3risec Aug 24, 2026
58b5fd7
Merge remote-tracking branch 'origin/challenge-26-rc' into challenge-…
v3risec Aug 24, 2026
fc3d41b
alloc: bound Weak from_raw_in slice harnesses to reduce CI resource u…
v3risec Aug 24, 2026
a000013
alloc: bound Rc harnesses to reduce CI resources, not a verification gap
v3risec Aug 25, 2026
77ac250
Merge branch 'main' into challenge-26-rc
v3risec Aug 25, 2026
36b3be0
Strengthen Rc contracts and Kani harnesses, and fix assume_init harne…
v3risec Aug 26, 2026
7681af1
Merge branch 'main' into challenge-26-rc
v3risec Aug 27, 2026
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
2 changes: 1 addition & 1 deletion library/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions library/alloc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@
#![feature(negative_impls)]
#![feature(never_type)]
#![feature(optimize_attribute)]
#![feature(proc_macro_hygiene)]
#![feature(rustc_allow_const_fn_unstable)]
#![feature(rustc_attrs)]
#![feature(slice_internals)]
Expand Down
Loading
Loading