Skip to content

Instantly share code, notes, and snippets.

@Dowwie
Created September 4, 2023 09:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dowwie/6186049eefbf606a307d467e5537b2ed to your computer and use it in GitHub Desktop.
Save Dowwie/6186049eefbf606a307d467e5537b2ed to your computer and use it in GitHub Desktop.
could not compile dependency :ssl_verify_fun, "mix compile" failed

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment