From acaac0c30e13c1089100f97b96a9dfab873eaf1e Mon Sep 17 00:00:00 2001 From: Fadhil Luqman Date: Mon, 18 Jan 2021 20:28:25 +0800 Subject: [PATCH] Add :crypto to extra_applications to prevent warnings when running `mix deps.compile` --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index d55c0ab..35f92ba 100644 --- a/mix.exs +++ b/mix.exs @@ -23,7 +23,7 @@ defmodule EventBus.Mixfile do # Type "mix help compile.app" for more information def application do # Specify extra applications you'll use from Erlang/Elixir - [extra_applications: [:logger], mod: {EventBus.Application, []}] + [extra_applications: [:logger, :crypto], mod: {EventBus.Application, []}] end defp elixirc_paths(:test) do