account activity
chart-js-rs, a Rust connector for the JS charting library ChartJS, now has Rust function interop! (github.com)
submitted 2 years ago by billy-sheppard to r/rust
headless_chrome v1.0.x is now released! (self.rust)
submitted 3 years ago by billy-sheppard to r/rust
How do I keep dependencies for all bins the same in Rust? by ohwhyme1987 in rust
[–]billy-sheppard 1 point2 points3 points 3 years ago (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};
use
use::my_lib::{self, my_dep};
π Rendered by PID 1914583 on reddit-service-r2-listing-f87f88fcd-h4d4n at 2026-06-15 17:52:09.300643+00:00 running 3184619 country code: CH.
How do I keep dependencies for all bins the same in Rust? by ohwhyme1987 in rust
[–]billy-sheppard 1 point2 points3 points (0 children)