aboutsummaryrefslogblamecommitdiff
path: root/shard/mix.exs
blob: fc10da7ef2281e17dfd33ad7081b6c8a1c3096d1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                          


                                                                                                                        













                                                           
                                             
                                        
                                                       
                                                        
 

                                                                          


     
defmodule Shard.MixProject do
  use Mix.Project

  def project do
    [
      app: :shard,
      version: "0.1.0",
      elixir: "~> 1.6",
      build_embedded: Mix.env == :prod,
      start_permanent: Mix.env() == :prod,
      deps: deps(),
      test_coverage: [tool: ExCoveralls],
      preferred_cli_env: [coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test]
    ]
  end

  # Run "mix help compile.app" to learn about applications.
  def application do
    [
      extra_applications: [:logger],
      mod: {Shard.Application, []}
    ]
  end

  # Run "mix help deps" to learn about dependencies.
  defp deps do
    [
      {:excoveralls, "~> 0.10", only: :test},
      {:briefly, "~> 0.3", only: :test},
      {:ex_doc, "~> 0.19", only: :dev, runtime: false},
      {:dialyxir, "~> 0.5", only: :dev, runtime: false},

      {:enacl, git: "https://github.com/jlouis/enacl.git", tag: "0.16.0"},
      # {:salty, "~> 0.1.3", hex: :libsalty},
    ]
  end
end