defmodule Graft.MixProject do use Mix.Project def project do [ app: :graft, version: "0.1.0", description: "An implementation of the raft consensus algorithm, allowing you to create distributed replicated state machines.", package: %{ licenses: [], links: %{} }, elixir: "~> 1.9", start_permanent: Mix.env() == :prod, deps: deps() ] 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 [ {:gen_state_machine, "~> 2.0"}, {:ex_doc, ">= 0.0.0", only: :dev, runtime: false} ] end end