forked from riverrun/comeonin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
42 lines (36 loc) · 1.08 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
defmodule Comeonin.Mixfile do
use Mix.Project
@version "3.0.2"
@description """
Password hashing (bcrypt, pbkdf2_sha512) library for Elixir.
"""
def project do
[app: :comeonin,
version: @version,
elixir: "~> 1.2",
name: "Comeonin",
description: @description,
package: package(),
source_url: "https://github.com/riverrun/comeonin",
compilers: [:elixir_make] ++ Mix.compilers,
deps: deps(),
dialyzer: [plt_file: ".dialyzer/local.plt", remove_defaults: [:unknown]]]
end
def application do
[applications: [:crypto, :logger]]
end
defp deps do
[{:elixir_make, "~> 0.4"},
#[{:elixir_make, "~> 0.4", runtime: false},
{:earmark, "~> 1.2", only: :dev},
{:ex_doc, "~> 0.15", only: :dev},
{:dialyxir, "~> 0.5.0", only: :dev}]
end
defp package do
[files: ["lib", "c_src", "mix.exs", "Makefile*", "README.md", "LICENSE"],
maintainers: ["David Whitlock"],
licenses: ["BSD"],
links: %{"GitHub" => "https://github.com/riverrun/comeonin",
"Docs" => "http://hexdocs.pm/comeonin"}]
end
end