Current section

Files

Jump to
hedgehog mix.exs
Raw

mix.exs

defmodule Hedgehog.MixProject do
use Mix.Project
def project do
[
app: :hedgehog,
description: "A Posthog SDK",
version: "0.0.1",
elixir: "~> 1.17",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: %{
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/cschmatzler/hedgehog"
}
}
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:broadway, "~> 1.1"},
{:gen_stage, "~> 1.2"},
{:jason, "~> 1.4"},
{:req, "~> 0.5"},
{:nimble_options, "~> 1.1"},
{:styler, "~> 1.1", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.34", only: :dev, runtime: false}
]
end
end