aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorMickael Remond <mremond@process-one.net>2016-09-08 10:29:44 +0200
committerMickael Remond <mremond@process-one.net>2016-09-08 10:29:44 +0200
commit58a72bd395fbe7dec95dea035c5a0185e7319a66 (patch)
tree5a935c9a8aa0687cc801d08a7c201c18c37e39ef /mix.exs
parentTypo (diff)
Fix compilation with Elixir 1.3 / R19
Diffstat (limited to '')
-rw-r--r--mix.exs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mix.exs b/mix.exs
index 8a5a2b88b..d414ea574 100644
--- a/mix.exs
+++ b/mix.exs
@@ -40,7 +40,7 @@ defmodule Ejabberd.Mixfile do
end
defp deps do
- [{:lager, "~> 3.0.0"},
+ [{:lager, "~> 3.2"},
{:p1_utils, "~> 1.0"},
{:cache_tab, "~> 1.0"},
{:stringprep, "~> 1.0"},
@@ -60,7 +60,7 @@ defmodule Ejabberd.Mixfile do
{:exrm, "~> 1.0.0", only: :dev},
# relx is used by exrm. Lock version as for now, ejabberd doesn not compile fine with
# version 3.20:
- {:relx, "~> 3.19.0", only: :dev},
+ {:relx, "~> 3.21", only: :dev},
{:meck, "~> 0.8.4", only: :test},
{:moka, github: "processone/moka", tag: "1.0.5c", only: :test}]
end