Current section

Files

Jump to
merkle_map mix.exs
Raw

mix.exs

defmodule MerkleMap.MixProject do
use Mix.Project
def project do
[
app: :merkle_map,
version: "0.2.2",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
name: "merkle_map",
description: "A faster Map, augmented with a MerkleTree",
licenses: ["MIT"],
maintainers: ["Derek Kraan"],
links: %{GitHub: "https://github.com/derekkraan/merkle_map"}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:stream_data, "~> 1.2", only: :test},
{:benchee, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.34", only: :dev, runtime: false, warn_if_outdated: true}
]
end
end