summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs23
1 files changed, 18 insertions, 5 deletions
diff --git a/mix.exs b/mix.exs
index 790d855..48b43b0 100644
--- a/mix.exs
+++ b/mix.exs
@@ -4,7 +4,7 @@ defmodule LSG.Mixfile do
def project do
[
app: :lsg,
- version: "0.2.2",
+ version: "0.2.4",
elixir: "~> 1.4",
elixirc_paths: elixirc_paths(Mix.env),
compilers: [:phoenix, :gettext] ++ Mix.compilers,
@@ -25,26 +25,39 @@ defmodule LSG.Mixfile do
defp deps do
[
- {:phoenix, "~> 1.3.0"},
+ {:phoenix, "~> 1.4.0"},
{:phoenix_pubsub, "~> 1.0"},
{:phoenix_html, "~> 2.10"},
{:phoenix_live_reload, "~> 1.0", only: :dev},
+ {:plug_cowboy, "~> 2.0"},
+ {:cowlib, "~> 2.9.1", override: true},
+ {:plug, "~> 1.7"},
{:gettext, "~> 0.11"},
- {:cowboy, "~> 1.0"},
{:httpoison, "~> 1.0"},
{:jason, "~> 1.0"},
+ {:poison, "~> 4.0", override: true},
{:floki, "~> 0.19.3"},
+ {:ecto, "~> 3.4"},
#{:exirc, github: "hrefhref/exirc"},
- {:exirc, path: "/usr/home/href/dev/exirc/"},
+ {:exirc, path: "../exirc/"},
{:distillery, "~> 2.0"},
{:earmark, "~> 1.2"},
+ {:oauther, "~> 1.1"},
{:extwitter, "~> 0.12.0"},
{:entropy_string, "~> 1.0.0"},
{:abacus, "~> 0.3.3"},
{:ex_chain, github: "eljojo/ex_chain"},
{:timex, "~> 3.6"},
{:muontrap, "~> 0.5.1"},
- {:tzdata, "~> 1.0"}
+ {:tzdata, "~> 1.0"},
+ {:nimble_csv, "~> 0.7.0"},
+ {:backoff, git: "https://github.com/ferd/backoff", branch: "master"},
+ {:telegram, git: "https://github.com/hrefhref/telegram.git", branch: "master"},
+ {:ex_aws, "~> 2.0"},
+ {:ex_aws_s3, "~> 2.0"},
+ {:gen_magic, git: "https://github.com/hrefhref/gen_magic", branch: "develop"},
+ {:liquex, "~> 0.3"},
+ {:html_entities, "0.4.0", override: true}
]
end
end