mirror of
https://github.com/benbusby/farside.git
synced 2025-04-16 05:23:01 -04:00

The dependency took a long time to compile, and was causing problems for a user who was attempting to build the project. Since it wasn't a strictly necessary dependency, and `jason` was already included in the project, all instances of `poison` have been replaced with `jason`. The only additional code that this introduced was converting from generic maps returned by `Jason.decode` into Service structs.
34 lines
657 B
Elixir
34 lines
657 B
Elixir
defmodule Farside.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :farside,
|
|
version: "0.1.0",
|
|
elixir: "~> 1.8",
|
|
start_permanent: Mix.env() == :prod,
|
|
deps: deps()
|
|
]
|
|
end
|
|
|
|
# Run "mix help compile.app" to learn about applications.
|
|
def application do
|
|
[
|
|
extra_applications: [:logger],
|
|
mod: {Farside.Application, []}
|
|
]
|
|
end
|
|
|
|
# Run "mix help deps" to learn about dependencies.
|
|
defp deps do
|
|
[
|
|
{:httpoison, "~> 1.8"},
|
|
{:jason, "~> 1.1"},
|
|
{:plug_attack, "~> 0.4.2"},
|
|
{:plug_cowboy, "~> 2.0"},
|
|
{:quantum, "~> 3.0"},
|
|
{:redix, "~> 1.1"}
|
|
]
|
|
end
|
|
end
|