this post was submitted on 14 Nov 2023
16 points (71.1% liked)
Rust
5999 readers
19 users here now
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Wormhole
Credits
- The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
This person has made some very different experiences to myself. How does C++ handle versioning? How do you compare versions across distros or even OSs? How do you control which features are included? How do you make sure your chosen build tools finds these files?
Projects like conan try to do what crates.io does for Rust and it's not the greatest experience. The other direction is something like Buck2 that puts the whole dependency in your project so you can have hermetic builds.
I have no idea how any of this can be seen as an advantage in a development workflow.
I assume you are talking about dependency versioning. That's hard on regular Linux distros. However, it's easy on nix and guix.