ip/mix.exs
Renovate Bot 16aa40e68c
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
chore(deps): update dependency ex_doc to ~> 0.31 (#26)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ex_doc](https://hex.pm/packages/ex_doc) | minor | `~> 0.30` -> `~> 0.31` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xODcuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE4Ny4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Reviewed-on: #26
Co-authored-by: Renovate Bot <bot@harton.nz>
Co-committed-by: Renovate Bot <bot@harton.nz>
2024-02-19 11:39:30 +13:00

50 lines
1.2 KiB
Elixir

defmodule IP.Mixfile do
use Mix.Project
@description """
Represtations and tools for IP addresses and networks.
"""
@version "2.0.1"
def project do
[
app: :ip,
version: @version,
elixir: "~> 1.5",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps(),
description: @description
]
end
def package do
[
maintainers: ["James Harton <james@harton.nz>"],
licenses: ["HL3-FULL"],
links: %{
"Source" => "https://harton.dev/james/ip"
}
]
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.15.0", only: ~w[dev test]a, runtime: false},
{:ex_doc, "~> 0.31", 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