1
0
mirror of https://github.com/avitex/elixir-vultr synced 2024-12-04 00:39:57 +00:00
vultr-elixir/mix.exs
dependabot-preview[bot] 8a2f08a40d Bump poison from 3.1.0 to 4.0.1
Bumps [poison](https://github.com/devinus/poison) from 3.1.0 to 4.0.1.
- [Release notes](https://github.com/devinus/poison/releases)
- [Commits](https://github.com/devinus/poison/compare/3.1.0...4.0.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-04-21 06:50:28 +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.1.3"},
{:poison, "~> 4.0"},
]
defp package, do: [
name: :vultr,
maintainers: ["James Dyson"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/avitex/elixir-vultr"},
]
end