“every rust project has a billion dependencies”
oh no they made code composable oh nooooooo should we call someone??
“every rust project has a billion dependencies”
oh no they made code composable oh nooooooo should we call someone??
rust has a lot of problems, but let me tell you: “micro libraries” isn’t one
splitting packages per concern is good for build performance, it’s good for review, it’s good for API evolution.
the problems are technical (compiler perf), financial (funding OSS), human etc.
@fasterthanlime > splitting packages per concern is good for build performance, it’s good for review, it’s good for API evolution
I do agree with this in the abstract, but there are certain corner cases where many small crates don't work super well.
In Android, we vendor all dependencies and each crate import requires its own approval: someone checks the license, someone else check the unsafe code, etc... We are working on improving the process, but right now, importing 20 crates takes weeks.