phoenix_token_auth
phoenix_token_auth copied to clipboard
mix deps.get not working for phoenix_token_auth
defp deps do [{:phoenix, "~> 1.0.2"}, {:phoenix_ecto, "~> 1.1"}, {:postgrex, ">= 0.0.0"}, {:phoenix_html, "~> 2.1"}, {:phoenix_live_reload, "~> 1.0", only: :dev}, {:cowboy, "~> 1.0"}, {:maru, "~> 0.8.1"}, {:maru_swagger, "~> 0.5", only: :dev }, {:comeonin, "~> 1.0"}, {:phoenix_token_auth, "0.0.13"}] end
Looking up alternatives for conflicting requirements on poison From mix.lock: 1.5.0 From phoenix_ecto v1.2.0: ~> 1.3 From phoenix_token_auth v0.0.13: ~> 1.3.1
** (Mix) Hex dependency resolution failed, relax the version requirements or unlock dependencies
Thank you.
hey @edossantos, please excuse the late reply. dependency versions are a bit messy, as most libs are still < 1.0 and I'm not actively using phoenix_token_auth in any projects at the moment. you can always just force some version of a dependency with {:poison, "~> 1.5.0", override: true},
and see if everything still works.
i'm planning a new project which will be using token auth again, so hopefully things will improve soon...