Packages

The Mjolnir MUD Engine is a modern MUD framework built in elixir.

Current section

Files

Jump to
mjolnir mix.exs
Raw

mix.exs

defmodule Mjolnir.MixProject do
use Mix.Project
def project do
[
app: :mjolnir,
version: "0.0.1",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: [
source_url: "https://github.com/mjolnir-mud/mjolnir",
description: "The Mjolnir MUD Engine is a modern MUD framework built in elixir.",
licenses: ["MIT"],
links: []
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {Mjolnir.Application, []},
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:uuid, "~> 1.1"},
{:table_rex, "~> 3.1.1"},
{:atomic_map, "~> 0.9.1"},
{:phoenix_pubsub, "~> 2.0.0"},
{:mock, "~> 0.3.0", only: [:test]}
]
end
end