3 unstable releases

0.2.1 Jun 30, 2021
0.2.0 Nov 19, 2020
0.1.0 Oct 1, 2020

#511 in Algorithms

Download history 199/week @ 2023-10-20 318/week @ 2023-10-27 404/week @ 2023-11-03 205/week @ 2023-11-10 230/week @ 2023-11-17 347/week @ 2023-11-24 363/week @ 2023-12-01 328/week @ 2023-12-08 381/week @ 2023-12-15 409/week @ 2023-12-22 531/week @ 2023-12-29 480/week @ 2024-01-05 651/week @ 2024-01-12 249/week @ 2024-01-19 130/week @ 2024-01-26 199/week @ 2024-02-02

1,298 downloads per month
Used in 11 crates (6 directly)

MPL-2.0 license

140KB
2.5K SLoC

PubGrub version solving algorithm

license crates.io docs.rs guide

Version solving consists in efficiently finding a set of packages and versions that satisfy all the constraints of a given project dependencies. In addition, when that is not possible, PubGrub tries to provide a very human-readable and clear explanation as to why that failed. The introductory blog post about PubGrub presents one such example of failure explanation:

Because dropdown >=2.0.0 depends on icons >=2.0.0 and
  root depends on icons <2.0.0, dropdown >=2.0.0 is forbidden.

And because menu >=1.1.0 depends on dropdown >=2.0.0,
  menu >=1.1.0 is forbidden.

And because menu <1.1.0 depends on dropdown >=1.0.0 <2.0.0
  which depends on intl <4.0.0, every version of menu
  requires intl <4.0.0.

So, because root depends on both menu >=1.0.0 and intl >=5.0.0,
  version solving failed.

This pubgrub crate provides a Rust implementation of PubGrub. It is generic and works for any type of dependency system as long as packages (P) and versions (V) implement the provided Package and Version traits.

Using the pubgrub crate

A guide with both high-level explanations and in-depth algorithm details is available online. The API documentation is available on docs.rs. A version of the API docs for the unreleased functionality from dev branch is also accessible for convenience.

Contributing

Discussion and development happens here on GitHub and on our Zulip stream. Please join in!

Remember to always be considerate of others, who may have different native languages, cultures and experiences. We want everyone to feel welcomed, let us know with a private message on Zulip if you don't feel that way.

PubGrub

PubGrub is a version solving algorithm, written in 2018 by Natalie Weizenbaum for the Dart package manager. It is supposed to be very fast and to explain errors more clearly than the alternatives. An introductory blog post was published on Medium by its author.

The detailed explanation of the algorithm is provided on GitHub, and complemented by the "Internals" section of our guide. The foundation of the algorithm is based on ASP (Answer Set Programming), and a book called "Answer Set Solving in Practice" by Martin Gebser, Roland Kaminski, Benjamin Kaufmann and Torsten Schaub.

Dependencies

~0.3–0.8MB
~20K SLoC