Closed moxley closed 6 years ago
Alternately, I tried specifying the latest release of maru and the latest of cowboy:
defp deps do
[
{:cowboy, "~> 2.4"},
{:maru, "~> 0.13"}
]
end
That resolved the need to specify ranch
, but it still ended up with the issue in #111.
Following the guide at https://maru.readme.io/docs/basic-usage
The solution the resolve the above error appears to be to add
cowboy
andranch
as dependencies:Additionally, the specific versions had to be tweaked to get working. The latest version of
ranch
is not compatible with the latest version ofcowboy
, so I downgradedranch
from 1.6 to 1.5.Resolving the dependencies did not get me to a working application. Another issue covers that: #111