summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorRicardo Hermida Ruiz <ricardo.ruiz@locaweb.com.br>2020-04-24 15:55:01 -0300
committerGitHub <noreply@github.com>2020-04-24 15:55:01 -0300
commit12893efa4be4dd6eeb2dfe601eaff4689a84b0f6 (patch)
treee22d03d315d79bb2cd54f645c121b737d8fdf8e0 /mix.exs
parentMerge pull request #14 from locaweb/fix-docs (diff)
parentMerge remote-tracking branch 'origin/add-timeout-support' into pooling (diff)
Merge pull request #16 from locaweb/pooling
add a pool in front of genservers
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs5
1 files changed, 3 insertions, 2 deletions
diff --git a/mix.exs b/mix.exs
index e1ee79b..a2704bb 100644
--- a/mix.exs
+++ b/mix.exs
@@ -4,7 +4,7 @@ defmodule PowerDNSex.Mixfile do
def project do
[
app: :powerdnsex,
- version: "0.2.0",
+ version: "0.4.0",
elixir: "~> 1.6",
description: description(),
package: package(),
@@ -20,8 +20,9 @@ defmodule PowerDNSex.Mixfile do
defp deps do
[
+ {:poolboy, "~> 1.5"},
{:httpoison, "~> 1.5.0"},
- {:poison, "~> 4.0.1"},
+ {:poison, "~> 3.0 or ~> 4.0.1"},
{:exvcr, "~> 0.10.3", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev}
]