mfm-parser/mix.exs
ilja 61f503a1bf Revert "update git URL"
This reverts commit 51282dd6a7.
2024-08-10 19:55:08 +02:00

27 lines
563 B
Elixir

defmodule MfmParser.MixProject do
use Mix.Project
def project do
[
app: :mfm_parser,
version: "0.1.1",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:temple, git: "git@akkoma.dev:floatingghost/temple.git", ref: "066a699ade472d8fa42a9d730b29a61af9bc8b59"}
]
end
end