This repository has been archived by the owner on Sep 28, 2022. It is now read-only.
Releases: facebookarchive/cargo-guppy
Releases · facebookarchive/cargo-guppy
guppy 0.2.1
guppy 0.2.0
guppy 0.1.8
target-spec 0.2.1
target-spec 0.2.0
guppy 0.1.7
target-spec 0.1.0
Initial release.
Version 0.1.6
Handle cyclic dev-dependencies.
As a result of algorithmic improvements to handle cycles, into_iter_ids
is now around 60% faster for large graphs.
Version 0.1.5
- Fix a bug involving situations where different dependency sections depend on the same package with different versions:
[dependencies]
lazy_static = "1"
[dev-dependencies]
lazy_static = "0.2"
Version 0.1.4
- Fix a bug in
into_root_ids
andinto_root_metadatas
that would cause it to return packages that aren't roots of another package. - Add a new selector,
select_workspace
, to select packages that are part of the workspace and all their transitive dependencies. In general,select_workspace
is preferable overselect_all
. - Internal work to prepare for upcoming feature graph analysis.