1
0
mirror of https://github.com/avitex/elixir-vultr synced 2024-11-21 19:09:57 +00:00
vultr-elixir/mix.exs
dependabot-preview[bot] 4eba9e11db Bump inch_ex from 0.5.6 to 2.0.0
Bumps [inch_ex](https://github.com/rrrene/inch_ex) from 0.5.6 to 2.0.0.
- [Release notes](https://github.com/rrrene/inch_ex/releases)
- [Changelog](https://github.com/rrrene/inch_ex/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rrrene/inch_ex/commits/v2.0.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-04-20 16:06:05 +01:00

36 lines
673 B
Elixir

defmodule Vultr.Mixfile do
use Mix.Project
@description """
Simple wrapper for the Vultr API
"""
def project, do: [
app: :vultr,
version: "0.3.0",
elixir: "~> 1.5",
deps: deps(),
description: @description,
package: package(),
]
# Configuration for the OTP application
def application, do: [
applications: [:httpotion],
]
defp deps, do: [
{:inch_ex, "~> 2.0", only: :docs},
{:ex_doc, "~> 0.16", only: :dev, runtime: false},
{:httpotion, "~> 3.0.2"},
{:poison, "~> 3.1"},
]
defp package, do: [
name: :vultr,
maintainers: ["James Dyson"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/avitex/elixir-vultr"},
]
end