Current section

Files

Jump to
Raw

mix.exs

defmodule Pbkdf2Elixir.Mixfile do
use Mix.Project
@version "1.4.0"
@description """
Pbkdf2 password hashing algorithm for Elixir
"""
def project do
[
app: :pbkdf2_elixir,
version: @version,
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
description: @description,
package: package(),
source_url: "https://github.com/riverrun/pbkdf2_elixir",
deps: deps(),
dialyzer: [
plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
]
]
end
def application do
[
extra_applications: [:logger, :crypto]
]
end
defp deps do
[
{:comeonin, "~> 5.3"},
{:ex_doc, "~> 0.23", only: :dev, runtime: false},
{:dialyxir, "~> 1.0.0", only: :dev, runtime: false}
]
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["David Whitlock"],
licenses: ["BSD"],
links: %{"GitHub" => "https://github.com/riverrun/pbkdf2_elixir"}
]
end
end