Packages
ex_kargo_neuron
0.1.0
Common utils and Configuration for `Neuron` (GraphQL Client Library) in Kargo system
Current section
Files
Jump to
Current section
Files
ex_kargo_neuron
mix.exs
mix.exs
defmodule ExKargo.Neuron.MixProject do
use Mix.Project
def project do
[
app: :ex_kargo_neuron,
version: "0.1.0",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Common utils and Configuration for `Neuron` (GraphQL Client Library) in Kargo system",
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp package() do
[
licenses: ["Apache-2.0"],
links: %{}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:neuron, "~> 5.0"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end