defmodule Persist.MixProject do use Mix.Project def project do [ app: :persist, version: "0.2.0-rc", description: "Simplest persistence layer for in-memory state storage", elixir: "~> 1.12", start_permanent: Mix.env() == :prod, deps: deps(), name: "Persist", package: package() ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger] ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:credo, "~> 1.5", only: [:dev, :test], runtime: false}, {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}, {:dialyxir, "~> 1.1", only: :dev, runtime: false}, {:uptight, "~> 0.2.4-rc"}, {:dyn_hacks, "~> 0.1.0"}, {:propcheck, "~> 1.4.1", only: [:test, :dev], runtime: true} ] end defp package do [ licenses: ["WTFPL"], links: %{ "GitHub" => "https://github.com/doma-engineering/persist", "Support" => "https://social.doma.dev/@jonn", "Matrix" => "https://matrix.to/#/#uptight:matrix.org" }, maintainers: ["doma.dev"] ] end end