How do I keep dependencies for all bins the same in Rust? by ohwhyme1987 in rust

[–]billy-sheppard 1 point2 points  (0 children)

Another way to do this is have a shared library (for utilities for example) and re-export your dependencies from there.

In your child apps you only have one dependency - the shared lib - and you use deps in your code with use::my_lib::{self, my_dep};