I\'d like to make a project with a daemon
and a client
, connecting through a unix socket.
A client
and a daemon
Another format could be to replicate what the Crates.io source code has done, if you have a massive project, something like:
Main Library in src, with a Bin folder with your executables. Then make calls to your main library crate from your executables.
That way you library is centralized so easier to find things as it's cached.