forked from EntropyString/Elixir
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
32 lines (27 loc) · 663 Bytes
/
mix.exs
File metadata and controls
32 lines (27 loc) · 663 Bytes
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
defmodule EntropyString.Mixfile do
use Mix.Project
def project do
[ app: :entropy_string,
version: "1.0.2",
elixir: "~> 1.4",
deps: deps(),
description: description(),
package: package()
]
end
defp deps do
[{:earmark, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.16", only: :dev}
]
end
defp description do
"""
Efficiently generate cryptographically strong random strings of specified entropy from various character sets.
"""
end
defp package do
[maintainers: ["Paul Rogers"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/EntropyString/Elixir" }]
end
end