Crates.io | patchelf |
lib.rs | patchelf |
version | 0.2.1 |
source | src |
created_at | 2023-11-13 11:52:55.503339 |
updated_at | 2023-11-14 08:46:04.275937 |
description | patchelf rust bindings |
homepage | |
repository | https://github.com/spinpx/patchelf-rs |
max_upload_size | |
id | 1033574 |
size | 1,868,182 |
Rust FFI for patchelf that we can call patchelf directly in a dirty way.
[dependencies]
patchelf = "0.2.1"
PatchElf::config()
.input("libpng.so")
.output("libpng2.so")
.set_soname("libpng2.so")
.patch();
PatchElf::config()
.input("libz.so")
.print_soname()
.patch();
Seed doc for more usages.