Current section

Files

Jump to
abi mix.exs
Raw

mix.exs

defmodule ABI.Mixfile do
use Mix.Project
def project do
[
app: :abi,
version: "0.1.13",
elixir: "~> 1.7",
description: "Ethereum's ABI Interface",
package: [
maintainers: ["Geoffrey Hayes", "Mason Fischer"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/exthereum/abi"}
],
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.0.0-rc1", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.19", only: :dev, runtime: false},
{:dialyxir, "~> 1.0.0-rc.4", only: [:dev, :test], runtime: false},
{:jason, "~> 1.1"},
{:keccakf1600, "~> 2.0.0", hex: :keccakf1600_orig}
]
end
end