Current section
Files
Jump to
Current section
Files
zigler_format
mix.exs
mix.exs
defmodule ZiglerFormat.MixProject do
use Mix.Project
def project do
[
app: :zigler_format,
version: "0.1.0",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Zig NIFs formatter plugin",
package: [
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/v0idpwn/zigler_format"}
]
]
end
def application do
[]
end
defp deps do
[
{:zigler, "~> 0.8"},
{:ex_doc, "~> 0.26", env: :prod, runtime: false}
]
end
end