forked from tauri-apps/tauri
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
safemem is unmaintained
| Details | |
|---|---|
| Status | unmaintained |
| Package | safemem |
| Version | 0.3.3 |
| URL | https://github.com/abonander/safemem |
| Date | 2023-02-14 |
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 withslice.copy_within(src_idx..src_idx+len, dest_idx);as ofrust 1.37.0. -
safemem::write_bytes(slice, byte);can be replaced withslice.fill(byte);as ofrust 1.50.0 -
safemem::prepend(slice, vec);can be replaced withlet old_len = vec.len(); vec.extend_from_slice(slice); vec.rotate_left(old_len);
as of
rust 1.26.0
See advisory page for additional details.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels