Packages

ExSha3 is a pure Elixir implementation of Sha3 and the original Keccak1600-f

Current section

6 Versions

Jump to

Compare versions

2 files changed
+6 additions
-6 deletions
  @@ -10,4 +10,4 @@
10 10 {<<"links">>,[{<<"GitHub">>,<<"https://github.com/dominicletz/exsha3">>}]}.
11 11 {<<"name">>,<<"ex_sha3">>}.
12 12 {<<"requirements">>,[]}.
13 - {<<"version">>,<<"0.1.3">>}.
13 + {<<"version">>,<<"0.1.4">>}.
  @@ -4,7 +4,7 @@ defmodule ExSha3.MixProject do
4 4 def project do
5 5 [
6 6 app: :ex_sha3,
7 - version: "0.1.3",
7 + version: "0.1.4",
8 8 elixir: "~> 1.8",
9 9 start_permanent: Mix.env() == :prod,
10 10 deps: deps(),
  @@ -42,10 +42,10 @@ defmodule ExSha3.MixProject do
42 42 # Run "mix help deps" to learn about dependencies.
43 43 defp deps do
44 44 [
45 - {:profiler, "~> 0.2", only: :profile},
46 - {:benchee, "~> 1.0", only: :benchmark},
47 - {:sha3, "2.0.0", only: :benchmark},
48 - {:ex_doc, "~> 0.19", only: :dev, runtime: false}
45 + {:profiler, "~> 0.2", only: [:dev], runtime: false},
46 + {:benchee, "~> 1.0", only: [:dev], runtime: false},
47 + {:sha3, "2.0.0", only: [:dev], runtime: false},
48 + {:ex_doc, "~> 0.19", only: [:dev], runtime: false}
49 49 ]
50 50 end
51 51 end