Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Releases: facebookarchive/cargo-guppy

guppy 0.2.1

13 Apr 22:14
Compare
Choose a tag to compare

guppy 0.2.0

13 Apr 21:47
Compare
Choose a tag to compare

guppy 0.1.8

09 Apr 01:11
Compare
Choose a tag to compare

target-spec 0.2.1

07 Apr 19:56
Compare
Choose a tag to compare

target-spec 0.2.0

05 Apr 19:34
Compare
Choose a tag to compare

guppy 0.1.7

05 Apr 20:54
Compare
Choose a tag to compare

target-spec 0.1.0

21 Mar 01:33
Compare
Choose a tag to compare

Initial release.

Version 0.1.6

12 Mar 00:03
Compare
Choose a tag to compare

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

06 Mar 20:58
Compare
Choose a tag to compare
  • 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

27 Jan 01:19
Compare
Choose a tag to compare
  • Fix a bug in into_root_ids and into_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 over select_all.
  • Internal work to prepare for upcoming feature graph analysis.