-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmix.exs
More file actions
51 lines (46 loc) · 1.09 KB
/
Copy pathmix.exs
File metadata and controls
51 lines (46 loc) · 1.09 KB
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
43
44
45
46
47
48
49
50
51
defmodule ExSha3.MixProject do
use Mix.Project
def project do
[
app: :ex_sha3,
version: "0.1.2",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
# Docs
package: package(),
description: "ExSha3 is a pure Elixir implementation of Sha3 and the original Keccak1600-f",
source_url: "https://github.com/dominicletz/exsha3",
docs: [
main: "ExSha3",
extras: ["README.md"]
]
]
end
defp package do
[
licenses: ["Apache 2.0"],
maintainers: [
"Dominic Letz"
],
links: %{
"GitHub" => "https://github.com/dominicletz/exsha3"
}
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :crypto]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:profiler, "~> 0.2", only: :profile},
{:benchee, "~> 1.0", only: :benchmark},
{:sha3, "2.0.0", only: :benchmark},
{:ex_doc, "~> 0.19", only: :dev, runtime: false}
]
end
end