Crates.io | self-replace |
lib.rs | self-replace |
version | 1.5.0 |
source | src |
created_at | 2023-05-14 14:12:27.182946 |
updated_at | 2024-09-01 10:30:38.713968 |
description | Utility crate that allows executables to replace or uninstall themselves |
homepage | https://github.com/mitsuhiko/self-replace |
repository | https://github.com/mitsuhiko/self-replace |
max_upload_size | |
id | 864280 |
size | 58,352 |
self-replace
is a crate that allows binaries to replace themselves with newer
versions or to uninstall themselves. On Unix systems this is a simple feat, but
on Windows a few hacks are needed which is why this crate exists.
This is a useful operation when working with single-executable utilties that want to implement a form of self updating or self uninstallation.
For details about the implementation refer to the documentation.
If you are looking for some higher level update logic, have a look at
self_update
which uses self-replace
under the hood but provides automatic updating from GitHub releases or
other distribution channels. Note that self_update
is maintained by
other maintainers.
To uninstall a binary, use self_delete
.
self_replace::self_delete()?;
To replace a binary for updating, use self_replace
.
let new_binary = "/path/to/new/binary";
self_replace::self_replace(&new_binary)?;
std::fs::remove_file(&new_binary)?;