Packages

Implementation of the mickey-128 crypto algorithm in elixir.

Current section

Files

Jump to
mickex mix.exs
Raw

mix.exs

defmodule Mickex.Mixfile do
use Mix.Project
def project do
[
app: :mickex,
version: "0.1.0",
elixir: "~> 1.5",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
source_url: "https://github.com/ChristopheBelpaire/mickex.git"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.22", only: :dev, runtime: false}
]
end
defp description do
"Implementation of the mickey-128 crypto algorithm in elixir."
end
defp package() do
[
files: ~w(lib .formatter.exs mix.exs README*),
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/ChristopheBelpaire/mickex.git"}
]
end
end