Current section
Files
Jump to
Current section
Files
ethereumex
mix.exs
mix.exs
defmodule Ethereumex.Mixfile do
use Mix.Project
def project do
[
app: :ethereumex,
version: "0.2.1",
elixir: "~> 1.6",
description: "Elixir JSON-RPC client for the Ethereum blockchain",
package: [
maintainers: ["Ayrat Badykov", "Izel Nakri"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/exthereum/ethereumex"}
],
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
def application do
[extra_applications: [:logger], mod: {Ethereumex, []}]
end
defp deps do
[
{:httpoison, "~> 1.0.0"},
{:poison, "~> 3.1.0"},
{:credo, "~> 0.8", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.14", only: :dev, runtime: false},
{:dialyxir, "~> 0.5", only: [:dev], runtime: false}
]
end
end