defmodule Scrypt.MixProject do use Mix.Project def project do [ app: :scrypt_ex, version: "0.1.0", elixir: "~> 1.14", name: "Scrypt", source_url: "https://github.com/mwmiller/scrypt_ex", start_permanent: Mix.env() == :prod, description: description(), package: package(), deps: deps() ] end def application do [ extra_applications: [:crypto] ] end defp deps do [ {:salsa20, "~> 1.0"}, {:ex_doc, ">= 0.0.0", only: :dev, runtime: false} ] end defp description do """ A pure Elixir implementation of the scrypt key derivation function (RFC 7914) """ end defp package do [ files: ["lib", "mix.exs", "README*", "LICENSE*"], maintainers: ["Matt Miller"], licenses: ["MIT"], links: %{ "GitHub" => "https://github.com/mwmiller/scrypt_ex", "Spec" => "https://www.rfc-editor.org/rfc/rfc7914" } ] end end