I have a RUST cargo that builds a LD_PRELOAD library.
Most of its fuctionality is in the libtrack.so that it produces.
yet
cargo install --root /x/y/z --path ./
doesn't install the library ?
cargo build is complete, but the install fails
Finished dev [unoptimized + debuginfo] target(s) in 22.21s
bash-4.4$ cargo install --path ./ --root /ws/sarvi-sjc/localroot
error: no packages found with binaries or examples
Yeah, cargo install is a bare-bones utility, designed mainly for installing simple development tools or self-contained utilities. It can't replace the full-featured packaging and installation systems already built in to most operating systems. Application developers should typically use Cargo to build their Rust code, not to distribute or install it.