Current section

Files

Jump to
nimler mix.exs
Raw

mix.exs

defmodule Nimler.MixProject do
use Mix.Project
def project do
[
app: :nimler,
version: "0.0.1",
description: description(),
package: package(),
name: "nimler",
elixir: "~> 1.9",
deps: deps()
]
end
defp package do
[ maintainers: ["wltsmrz"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/wltsmrz/nimler"} ]
end
defp description, do: "Erlang/Elixir NIFs in nim"
defp deps, do: [{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}]
end