From 9ed2fa7cdf603ba1a14a12c7a1adbd0e4626a2a8 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Tue, 14 May 2019 16:58:34 +0000 Subject: [PATCH] mix: add credo dependency --- mix.exs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mix.exs b/mix.exs index 42bf3f8..1c93ac0 100644 --- a/mix.exs +++ b/mix.exs @@ -23,8 +23,9 @@ defmodule HttpSignatures.MixProject do # Run "mix help deps" to learn about dependencies. defp deps do [ - # {:dep_from_hexpm, "~> 0.3.0"}, - # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}, + {:credo, "~> 1.0.0", only: [:dev, :test], runtime: false}, + {:ex_doc, "~> 0.19", only: :dev, runtime: false}, + {:dialyxir, "~> 1.0.0-rc.5", only: [:dev], runtime: false} ] end