goncalotomas
goncalotomas

Reputation: 1000

How do I know which dependencies are required in a rebar3 project?

I cloned an Erlang project that uses rebar3 and has several dependencies:

{folsom, ".*", {git, "git://github.com/basho/folsom.git", {branch, "master"}}},
{lager, {git, "https://github.com/basho/lager", {tag, "3.2.1"}}},
{erlcql, {git, "git://github.com/rpt/erlcql.git", {branch, "master"}}},
{mochiweb, "1.5.1*", {git, "git://github.com/basho/mochiweb", {branch, "master"}}}

But I suspect that some of these dependencies are not needed. How can I automatically verify which dependencies are actually used in the source code?

Upvotes: 2

Views: 121

Answers (0)

Related Questions