Reputation: 233
There is part of the output:
What does the symbols ('+','\','->','()','(*)') exactly mean?
Upvotes: 23
Views: 10483
Reputation: 84844
+
, -
, |
and \
are just used to draw the tree - it's a kind of ASCII art.
When it comes to (*)
and ->
please refer to this question and answer.
(*)
- is used to indicate that particular dependency is described somewhere else in the tree
->
- is used to point the dependency that wins in version conflict.
Upvotes: 43