Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Searching for Reverse Dependencies on Hackage

Is there a way to search for Hackage packages that depend on package X (for any package X)? It would be great to find examples of how a package is used in the wild to get an idea of its capabilities. (Also useful for [attempting to] resolve cabal hell.)

like image 879
crockeea Avatar asked Oct 22 '15 18:10

crockeea


2 Answers

You can use Michael Snoyman's packdeps. For example, this link will tell you all the package that depend on the package text. You can just edit that link with the package name to get the reverse dependencies.

like image 156
Sibi Avatar answered Nov 17 '22 14:11

Sibi


Check out Hackage's Reverse Dependency Monitor.

like image 3
ErikR Avatar answered Nov 17 '22 13:11

ErikR