in reply to Should I list core modules as dependencies?
What's more, you should list every module your code relies on. If your code uses Foo::Bar and Baz::Barf, but Foo::Bar depends on Baz::Barf, you should declare a dependency on both of them, because at some point in the future Foo::Bar might stop depending on Baz::Barf and use something else instead.
In general, if your code mentions a module, you should list it as a pre-requisite.
|
---|