Add the last reviewed version to Cargo.toml / [dependencies]:

sync_wrapper = "0.1.1"

Filter reviews clicking on the numbers in the summary.

Full column names in tooltip hints: rating Negative, rating Neutral, rating Positive, rating Strong, thoroughness, understanding, reviews count.

Neg
Neu
Pos
Str
tho
und
rev
1
2
1
2
crate version
rating
date
reviewer
thoroughness, understanding
sync_wrapper 0.1.1
strong
2021-10-16
medium, high

Reviewed for soundness. There are two instances of unsafe code.

One is a standard pin projection.

The other is the primary purpose of the crate:

unsafe impl Sync for SyncWrapper {}

This is equivalent to the statement that all instances of &SyncWrapper
can be safely sent across thread boundaries. This is true, because
&SyncWrapper is useless. The crate allows no operations on &SyncWrapper
alltogether. The only provided methods require &mut SyncWrapper or owned
SyncWrapper.

© bestia.dev 2023, MIT License, Version: 2023.608.1636

Open source repository for this web app: https://github.com/bestia-dev/cargo_crev_web/