ip/mix.exs
Renovate Bot eaab1f76b4
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
chore(deps): update dependency ex_doc to ~> 0.32
2024-04-10 21:28:19 +12:00

58 lines
1.5 KiB
Elixir

defmodule IP.Mixfile do
use Mix.Project
@description """
Represtations and tools for IP addresses and networks.
"""
@version "2.0.3"
def project do
[
app: :ip,
version: @version,
elixir: "~> 1.5",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps(),
description: @description,
docs: [
main: "readme",
extras: ["README.md", "CHANGELOG.md"]
]
]
end
def package do
[
maintainers: ["James Harton <james@harton.nz>"],
licenses: ["HL3-FULL"],
links: %{
"Source" => "https://harton.dev/james/ip",
"GitHub" => "https://github.com/jimsynz/ip",
"Changelog" => "https://docs.harton.nz/james/ip/changelog.html",
"Sponsor" => "https://github.com/sponsors/jimsynz"
}
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:crypto, :logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.6", only: ~w[dev test]a, runtime: false},
{:dialyxir, "~> 1.4", only: ~w[dev test]a, runtime: false},
{:doctor, "~> 0.21", only: ~w[dev test]a, runtime: false},
{:ex_check, "~> 0.16.0", only: ~w[dev test]a, runtime: false},
{:ex_doc, "~> 0.32", only: ~w[dev test]a, runtime: false},
{:earmark, "~> 1.4", only: ~w[dev test]a, runtime: false},
{:git_ops, "~> 2.4", only: ~w[dev test]a, runtime: false}
]
end
end