Current section

Files

Jump to
cipher mix.exs
Raw

mix.exs

defmodule Cipher.Mixfile do
use Mix.Project
def project do
[app: :cipher,
version: "1.3.0",
elixir: ">= 1.3.0",
package: package(),
description: "Elixir crypto library to encrypt/decrypt arbitrary binaries.",
deps: deps()]
end
defp package do
[maintainers: ["Rubén Caro"],
licenses: ["MIT"],
links: %{github: "https://github.com/rubencaro/cipher",
other_languages: "https://gist.github.com/rubencaro/9545060"}]
end
defp deps do
[{:poison, "~> 2.0"},
{:ex_doc, ">= 0.0.0", only: :dev},
{:plug, ">= 1.1.0"}]
end
end