Noam Ta Shma
Noam Ta Shma
# The problem When the `with_cryo` function completes, it must guarantee that any outstanding `CryoRef` is gone. If any are left, it can't safely continue execution under any circumstances. In...
After the maintainer of `owning_ref` has been unresponsive for a long time, I published my fix of `owning_ref` known soundness issues as a new crate, `safer_owning_ref`. Please migrate to `safer_owning_ref`.
After the maintainer of `owning_ref` has been unresponsive for a long time, I decided to publish my fix of `owning_ref` known soundness issues as a new crate, `safer_owning_ref`. Please migrate...
Fix #77
This is my fork that fixes #77 . I based it on the existing work in #72 . Some things I'm not sure of: * Which option for the semantics...
I found more unsoundness problems. This extends #61 . In particular, `OwningRef::map_with_owner` allows creating an `OwningRef` that points at the owner, which can be moved. ```rust fn unstable_address() { let...