1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 16:22:32 -04:00
httparrot/mix.exs
dependabot-preview[bot] 44c68b2f4e
Bump con_cache from 0.13.1 to 0.14.0
Bumps [con_cache](https://github.com/sasa1977/con_cache) from 0.13.1 to 0.14.0.
- [Release notes](https://github.com/sasa1977/con_cache/releases)
- [Changelog](https://github.com/sasa1977/con_cache/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sasa1977/con_cache/compare/0.13.1...0.14.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-10-07 08:17:13 +00:00

48 lines
974 B
Elixir

defmodule Httparrot.Mixfile do
use Mix.Project
@description """
HTTP Request & Response Server. An incomplete clone of http://httpbin.org
"""
def project do
[
app: :httparrot,
version: "1.2.0",
elixir: "~> 1.7",
name: "HTTParrot",
description: @description,
package: package(),
deps: deps()
]
end
def application do
[
extra_applications: [:logger],
mod: {HTTParrot, []}
]
end
defp deps do
[
{:cowboy, "~> 2.6.3"},
{:exjsx, "~> 3.0 or ~> 4.0"},
{:con_cache, "~> 0.14.0"},
{:ex_doc, "~> 0.14", only: :dev},
{:meck, "~> 0.8.13", only: :test}
]
end
defp package do
[
maintainers: ["Eduardo Gurgel Pinho"],
licenses: ["MIT"],
links: %{
"Github" => "https://github.com/edgurgel/httparrot",
"HTTParrot" => "http://httparrot.herokuapp.com",
"httpbin" => "http://httpbin.org"
}
]
end
end