Last active
January 7, 2016 17:43
-
-
Save emschwar/f99c1ccd68c2511a2fa5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defp deps do | |
[{:ranch, "1.2.0"}, | |
{:uuid, "~>1.1"}, | |
{:json, "~>0.3.0"}, | |
{:cowboy, "1.0.4"}] | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~/src/conman_elixir$ mix deps.get | |
Running dependency resolution | |
Dependencies have diverged: | |
* ranch (Hex package) | |
the dependency ranch in mix.exs is overriding a child dependency: | |
> In mix.exs: | |
{:ranch, "1.2.0", [hex: :ranch, manager: :make]} | |
> In deps/cowboy/rebar.config: | |
{:ranch, "~> 1.0", [optional: false, hex: :ranch, manager: :rebar]} | |
Ensure they match or specify one of the above in your deps and set "override: true" | |
** (Mix) Can't continue due to errors on dependencies |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment