CVE
RUSTSEC-2023-0081
safemem is unmaintained
The latest crates.io release was in 2019. The repository has been archived by the author.
Migration
safemem::copyover(slice, srcidx, dest_idx, len);can be replaced withslice.copywithin(srcidx..srcidx+len, destidx);as ofrust 1.37.0.safemem::write_bytes(slice, byte);can be replaced withslice.fill(byte);as ofrust 1.50.0safemem::prepend(slice, vec);can be replaced with
```rust
let old_len = vec.len();
vec.extendfromslice(slice);
vec.rotateleft(oldlen);
```
as of rust 1.26.0
Package Versions Affected
Package Version
patch Availability
No items found.
Automatically patch vulnerabilities without upgrading
Fix Without Upgrading
Detect compatible fix
Apply safe remediation
Fix with a single pull request
CVSS Version
Severity
Base Score
CVSS Version
Score Vector

C
H
U
-

C
H
U
-

C
H
U
-
Related Resources
No items found.
