I have a project, let's call this project Master. This Master projects depends on other library I've already written and that is separated in different project, let's call this project Library.
Adding git dependencies or unbuilt project dependencies into rust is pretty straightforward. But what if I want to pick already built Library.librs, tell cargo to use it while compiling Master (output Master.exe) so I can ship the whole program with hierarchy like this:
-Master
--lib
---Library.librs
--Master.exe
Can this be done with cargo, or do I have to use rustc with -L parameter ? If so, how exactly ? Thank you for any helpful ideas.