I'm on the uv team. I am quite partial to this approach as well. Alas, it's difficult culturally to pull this off in a pre-existing ecosystem. And in the case of Python at least, it's not totally clear to me that it would avoid the need for solving NP hard problems. See my other comment in this thread about simplifying PEP 508 marker expressions.
Other than avoiding needing a SAT solver to resolve dependencies, the other thing I like about Go's approach is that it makes it very difficult to "lie" about the dependencies you support. In a maximal environment, it's very easy to "depend" on foo 1.0
but where you actually need foo 1.1
without issues appearing immediately.
As the author of Jiff, I don't like it either. But I didn't see any other feasible way to improve Rust's datetime offering. (The sibling comment links to a more in depth answer.)
It would be better if there was one datetime library. It would be better if
chrono
had just been done "right" from the start. But it wasn't. So I can either go to thechrono
maintainers and say, "please let me, a non-expert in datetimes, have full creative control over the project" or I can go build something on my own and, in the process, become an expert. Otherwise, we stay stuck in our local optimum.As a fan of xkcd, this is probably least favorite xkcd. On the one hand, yes, it aptly expresses frustration. On the other, it's easy to use as a club against progress itself. Sometimes you need to start fresh to move the needle. Rust is a perfect example of that itself.