summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorJordan Bracco <href@random.sh>2020-05-08 20:10:33 +0200
committerJordan Bracco <href@random.sh>2020-05-08 20:10:33 +0200
commitb541ef96741129f5aebd2b7526bbca8717cf5c40 (patch)
tree2cad5e33c2ef3175adeac264453ac22e8b0ed126 /mix.exs
parentInitial commit (diff)
Switch to atomics, add shared ets, ..
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs5
1 files changed, 1 insertions, 4 deletions
diff --git a/mix.exs b/mix.exs
index f3ff456..0ff4802 100644
--- a/mix.exs
+++ b/mix.exs
@@ -11,19 +11,16 @@ defmodule Limiter.MixProject do
]
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
[
+ {:ex_doc, "~> 0.21", only: :dev, runtime: false},
{:benchee, "~> 1.0", only: [:dev, :test]}
- # {:dep_from_hexpm, "~> 0.3.0"},
- # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end