defmodule ExRingRing.MixProject do use Mix.Project def project do [ app: :ex_ring_ring, version: "0.1.0", elixir: "~> 1.17", start_permanent: Mix.env() == :prod, deps: deps(), description: "Consistent Hash Ring implementation in Elixir", package: package(), licenses: ["Apache-2.0"], links: %{"GitHub" => "https://github.com/ohhi-vn/ex_ring_ring"} ] end def application do [ extra_applications: [:logger] ] end defp deps do [ {:ex_doc, "~> 0.30", only: :dev, runtime: false}, {:excoveralls, "~> 0.17", only: :test}, {:ex_check, "~> 0.9", only: :test, runtime: false}, {:credo, "~> 1.7", only: :dev, runtime: false} ] end defp package do [ files: ["lib", "mix.exs", "README.md", "guides"], maintainers: ["Your Name"], licenses: ["Apache-2.0"], links: %{"GitHub" => "https://github.com/ohhi-vn/ex_ring_ring"} ] end end