Current section
Files
Jump to
Current section
Files
crypto_rand
mix.exs
mix.exs
defmodule CryptoRand.MixProject do
use Mix.Project
def project do
[
app: :crypto_rand,
version: "1.0.3",
elixir: "~> 1.8",
deps: deps(),
description: description(),
package: package()
]
end
def application do
[
extra_applications: [:crypto]
]
end
defp deps,
do: [
{:earmark, "~> 1.4", only: :dev},
{:ex_doc, "~> 0.24", only: :dev}
]
defp description do
"""
Fast and efficient cryptographically strong versions of several Enum functions that rely on :rand uniform functions for randomness.
"""
end
defp package do
[
maintainers: ["Paul Rogers"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/CryptoRand/Elixir",
"README" => "https://cryptorand.github.io/Elixir/",
"Docs" => "https://hexdocs.pm/crypto_rand/api-reference.html"
}
]
end
end