Current section

Files

Jump to
Raw

mix.exs

defmodule Barytherium.MixProject do
use Mix.Project
def project do
[
app: :barytherium,
version: "0.6.2",
elixir: "~> 1.13",
description: "STOMP library",
deps: deps(),
package: package(),
source_url: "https://codeberg.org/Subarrow/Barytherium",
docs: [
main: "Barytherium"
]
]
end
defp package() do
[
maintainers: ["Subarrow"],
licenses: ["MIT"],
links: %{
"Source code" => "https://codeberg.org/Subarrow/Barytherium"
}
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.29.1", only: [:dev, :test], runtime: false},
{:credo, "~> 1.6.7", only: [:dev, :test], runtime: false},
{:telemetry, "~> 1.2.1"}
]
end
end