RUSTSEC-2023-0081

Source
https://rustsec.org/advisories/RUSTSEC-2023-0081
Import Source
https://github.com/rustsec/advisory-db/blob/osv/crates/RUSTSEC-2023-0081.json
JSON Data
https://api.osv.dev/v1/vulns/RUSTSEC-2023-0081
Published
2023-02-14T12:00:00Z
Modified
2024-03-04T18:47:07Z
Summary
safemem is unmaintained
Details

The latest crates.io release was in 2019. The repository has been archived by the author.

Migration

  • safemem::copy_over(slice, src_idx, dest_idx, len); can be replaced with slice.copy_within(src_idx..src_idx+len, dest_idx); as of rust 1.37.0.
  • safemem::write_bytes(slice, byte); can be replaced with slice.fill(byte); as of rust 1.50.0
  • safemem::prepend(slice, vec); can be replaced with

    let old_len = vec.len();
    vec.extend_from_slice(slice);
    vec.rotate_left(old_len);
    

    as of rust 1.26.0

Database specific
{
    "license": "CC0-1.0"
}
References

Affected packages

crates.io / safemem

Package

Affected ranges

Type
SEMVER
Events
Introduced
0.0.0-0

Ecosystem specific

{
    "affected_functions": null,
    "affects": {
        "os": [],
        "functions": [],
        "arch": []
    }
}

Database specific

{
    "cvss": null,
    "informational": "unmaintained",
    "categories": []
}