systembooster/mix.exs

29 lines
531 B
Elixir
Raw Permalink Normal View History

2019-07-30 22:42:58 -04:00
defmodule SystemBooster.MixProject do
use Mix.Project
def project do
[
app: :systembooster,
version: "0.1.0",
elixir: "~> 1.8",
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
[
2019-07-31 15:07:24 -04:00
{:hunter, git: "https://git.foxiepa.ws/foxiepaws/hunter.git"}
2019-07-30 22:42:58 -04:00
]
end
end