Packages
absinthe_plug
1.4.4
1.5.10
1.5.9
1.5.8
1.5.7
1.5.6
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.5.0-rc.2
1.5.0-rc.1
1.5.0-rc.0
1.5.0-alpha.0
1.4.7
1.4.6
1.4.5
1.4.4
1.4.3
1.4.2
1.4.1
retired
1.4.0
1.4.0-rc.2
1.4.0-rc.1
1.4.0-rc.0
1.4.0-beta.2
1.4.0-beta.1
1.3.1
1.3.0
1.3.0-rc.1
1.3.0-rc.0
1.3.0-beta.1
1.3.0-beta.0
1.3.0-alpha.0
1.2.5
1.2.4
1.2.3
1.2.2
1.2.0
1.2.0-rc.0
1.2.0-alpha0
1.1.3
1.1.2
1.1.1
1.0.0
0.5.0
0.4.0
0.2.0
0.1.3
0.1.2
0.1.0
Plug support for Absinthe, the GraphQL toolkit for Elixir
Security advisory:
This version has known vulnerabilities.
View advisories
Current section
Files
Jump to
Current section
Files
absinthe_plug
mix.exs
mix.exs
defmodule Absinthe.Plug.Mixfile do
use Mix.Project
@version "1.4.4"
def project do
[
app: :absinthe_plug,
version: @version,
elixir: "~> 1.3",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
package: package(),
docs: [source_ref: "v#{@version}", main: "Absinthe.Plug"],
deps: deps()
]
end
defp package do
[
description: "Plug support for Absinthe, the GraphQL toolkit for Elixir",
files: ["lib", "mix.exs", "README*"],
maintainers: ["Ben Wilson", "Bruce Williams"],
licenses: ["MIT"],
links: %{
site: "http://absinthe-graphql.org",
github: "https://github.com/absinthe-graphql/absinthe_plug"
}
]
end
def application do
[applications: [:logger, :plug, :absinthe]]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:plug, "~> 1.3.2 or ~> 1.4"},
{:absinthe, "~> 1.4.11"},
{:poison, ">= 0.0.0", only: [:dev, :test]},
{:ex_doc, "~> 0.18.0", only: :dev}
]
end
end