Current section
Files
Jump to
Current section
Files
money_crypto
mix.exs
mix.exs
defmodule MoneyCrypto.MixProject do
use Mix.Project
def project do
[
app: :money_crypto,
version: "0.1.2",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
description: description(),
dialyzer: [
plt_add_apps: [:mix],
flags: [
:error_handling,
:race_conditions,
:underspecs,
:unmatched_returns
]
]
]
end
defp description do
"Crypto currency list for Money"
end
defp package do
[
licenses: ["Apache-2.0"],
links: %{"GitLab" => "https://gitlab.com/michelboaventura/money_crypto"}
]
end
def application do
[]
end
defp deps do
[
{:credo, "~> 1.2", only: [:test, :dev], runtime: false},
{:dialyxir, "~> 1.1", only: [:test, :dev], runtime: false},
{:ex_doc, "~> 0.14", only: :dev, runtime: false}
]
end
end