Packages

Implements the protocol used by Maelstrom, the distributed systems workbench.

Current section

Files

Jump to
maelstrom mix.exs
Raw

mix.exs

defmodule Maelstrom.MixProject do
use Mix.Project
def project do
[
app: :maelstrom,
description: "Implements the protocol used by Maelstrom, the distributed systems workbench.",
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
def package do
[
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/prehnRA/maelstrom_ex"
},
source_url: "https://github.com/prehnRA/maelstrom_ex"
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:jason, "~> 1.3"},
{:ecto, "~> 3.10.1", only: [:dev, :test]},
{:ex_doc, "~> 0.29.4", only: [:dev, :test]},
{:excoveralls, "~> 0.10", only: :test}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end