When you get the following error when trying to compile your Elixir project, it is due to library maintainers not properly pinning version per dependency and being affected by a breaking change that has affected many projects downstream.
could not compile dependency :ssl_verify_fun, "mix compile" failed
To fix, simply run from command line:
mix deps.unlock ssl_verify_fun
mix deps.get
Thanks 💯