Packages
comeonin
4.0.1
5.5.1
5.5.0
5.4.0
5.3.3
5.3.2
5.3.1
5.3.0
5.2.0
5.1.3
5.1.2
5.1.1
5.1.0
5.0.0
4.1.2
4.1.1
4.1.0
4.0.3
4.0.2
4.0.1
4.0.0
4.0.0-rc.0
3.2.0
3.1.0
3.0.2
3.0.1
3.0.0
2.6.0
2.5.3
2.5.2
2.5.1
2.5.0
2.4.0
2.3.1
2.3.0
2.2.0
2.1.1
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
1.6.0
1.5.0
1.4.1
1.4.0
1.3.2
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.11.3
0.11.2
0.11.1
0.11.0
0.10.0
0.9.0
0.8.2
0.8.1
0.8.0
0.7.0
0.6.0
0.5.1
0.5.0
0.4.0
0.3.1
0.3.0
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.1
0.1.0
A specification for password hashing libraries
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Comeonin.Mixfile do
use Mix.Project
@version "4.0.1"
@description """
Password hashing library for Elixir.
"""
def project do
[
app: :comeonin,
version: @version,
elixir: "~> 1.4",
name: "Comeonin",
description: @description,
package: package(),
source_url: "https://github.com/riverrun/comeonin",
deps: deps()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:argon2_elixir, "~> 1.2", optional: true},
{:bcrypt_elixir, "~> 0.12.1 or ~> 1.0", optional: true},
{:pbkdf2_elixir, "~> 0.12", optional: true},
{:earmark, "~> 1.2", only: :dev},
{:ex_doc, "~> 0.16", only: :dev}
]
end
defp package do
[
maintainers: ["David Whitlock"],
licenses: ["BSD"],
links: %{"GitHub" => "https://github.com/riverrun/comeonin",
"Docs" => "http://hexdocs.pm/comeonin"}
]
end
end