defmodule ExploitGuard.MixProject do use Mix.Project def project do [ app: :exploit_guard, version: "1.0.0", elixir: "~> 1.13", start_permanent: Mix.env() == :prod, deps: deps(), description: description(), package: package(), source_url: "https://github.com/paraxialio/exploit_guard" ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger], mod: {ExploitGuard.Application, []} ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:recon, ">= 2.3.0"}, {:ex_doc, ">= 0.28.4", only: :dev}, ] end defp description do "Runtime application self protection for Elixir." end defp package() do [ licenses: ["Apache-2.0"], links: %{"GitHub" => "https://github.com/paraxialio/exploit_guard"} ] end end