Reputation: 19132
As the title says, is there a way to find out which packages depend on a specific package in Julia?
Upvotes: 9
Views: 792
Reputation: 12051
julia> Pkg.dependents("JSON")
53-element Array{AbstractString,1}:
...
Note this only includes packages you have installed.
Upvotes: 10