Current section
Files
Jump to
Current section
Files
tethys_msgpack
mix.exs
mix.exs
defmodule TethysMsgpack.MixProject do
use Mix.Project
def project do
[
app: :tethys_msgpack,
version: "0.1.0",
elixir: "~> 1.17",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
description: "Adds MessagePack functionality to Tethys",
links: %{"GitHub" => "https://github.com/polymorfiq-tools/tethys_msgpack"},
licenses: ["AGPL-3.0-or-later"]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:tethys, "~> 0.1"},
{:msgpax, "~> 2.0"}
]
end
end