Mix.Dep record
This is a record that keeps information about your project dependencies. It contains:
scm- a module representing the source code management tool (SCM) operations;app- the application name as an atom;requirement- a binary or regex with the dependency's requirementstatus- the current status of the dependency, checkMix.Deps.format_status/1for more info;opts- the options given by the developerdeps- dependencies of this dependencymanager- the project management, possible values::rebar|:mix|:make|nilfrom- path to the file where the dependency was definedextra- a slot for adding extra configuration based on the scm. the information on this field is private to the scm and should not be relied on.
Fields (and defaults)
- scm: nil
- app: nil
- requirement: nil
- status: nil
- opts: nil
- deps: []
- extra: nil
- manager: nil
- from: nil