I have a project that is stored in a git repo. The project uses ffi and refers to a dependent library(dll/so) also stored in the project, for example:
/client/Cargo.toml
/lib/client.so
This all compiles perfectly and gets stored into a repo https://somewhere.com/repo
I have another repo that wants to use the repo as a dependency.
/application/app/Cargo.toml
in here I refer to the repo
client = { git="https://somewhere.com/repo", branch="master" }
When I compile the dependency correctly pulls client, however I need the extra step of getting the lib/client.so as well. Is there and [an easy way] | [common pattern] | [am I nuts] for doing this?