This is sweet:<p>For example, if I have three packages:<p><pre><code> - uno depends on json 1.3.6
- dos depends on json 1.4.12
- tres depends on json 2.1.0
</code></pre>
Cargo will use json 1.4.12 for uno and dos, and json 2.1.0 for tres.<p>Hopefully rust builds a culture that respects semantic versioning better than the Ruby & Node cultures do. That has to start at the top. There were several Rails 2.3.X releases with minor ABI incompatibilities. Truly respecting semver would have required these patch level updates to get a new major number.
And here is the announcement from Yehuda Katz:<p><a href="https://mail.mozilla.org/pipermail/rust-dev/2014-June/010569.html" rel="nofollow">https://mail.mozilla.org/pipermail/rust-dev/2014-June/010569...</a>
Will this play nicely with the package management tools OSes already have, or is this going to end up being yet another source for files/packages to accumulate that are outside the view of well-documented and designed administrative tools?
I haven't been following the development of this package manager, but previous attempts at making a package manager for Rust have failed. Is this package manager supported officially now? I really hope it will stick around.
This looks like yet more awesome stuff coming out of the Rust camp.<p>I'm pretty excited to see Teepee and Rust come together so I can really give it a spin doing what I'm currently doing daily for a job.
While I support semantic versioning, people need to be aware that it's only as good as the package maintainer. I have used packages that have (unintentionally) broke semver conformity. Nothing really stops an author from releasing breaking changes when going from "1.2.1" to "1.2.2".
This is very welcome news, indeed. I will have to give it a try as soon as I can make the time.<p>I hope it will be more stable and work better than the Haskell package manager, Cabal. I literally <i>never</i> got that to work on any machine. It would typically destroy itself while attempting to update itself...
I would really love to see some docs on how to actually install and get started with Cargo.<p>It doesn't ship with Rust and the docs on GitHub and crates.io are not very enlightening.