Current section

23 Versions

Jump to

Compare versions

2 files changed
+7 additions
-7 deletions
  @@ -3,7 +3,7 @@
3 3 {<<"description">>,<<"Ed25519 signature functions">>}.
4 4 {<<"elixir">>,<<"~> 1.7">>}.
5 5 {<<"files">>,
6 - [<<"lib">>,<<"lib/ed25519.ex">>,<<"lib/hash.ex">>,<<"mix.exs">>,
6 + [<<"lib">>,<<"lib/hash.ex">>,<<"lib/ed25519.ex">>,<<"mix.exs">>,
7 7 <<"README.md">>,<<"LICENSE">>]}.
8 8 {<<"licenses">>,[<<"MIT">>]}.
9 9 {<<"links">>,
  @@ -11,4 +11,4 @@
11 11 {<<"Info">>,<<"http://ed25519.cr.yp.to">>}]}.
12 12 {<<"name">>,<<"ed25519">>}.
13 13 {<<"requirements">>,[]}.
14 - {<<"version">>,<<"1.3.1">>}.
14 + {<<"version">>,<<"1.3.2">>}.
  @@ -4,7 +4,7 @@ defmodule Ed25519.Mixfile do
4 4 def project do
5 5 [
6 6 app: :ed25519,
7 - version: "1.3.1",
7 + version: "1.3.2",
8 8 elixir: "~> 1.7",
9 9 name: "Ed25519",
10 10 source_url: "https://github.com/mwmiller/ed25519_ex",
  @@ -17,14 +17,14 @@ defmodule Ed25519.Mixfile do
17 17 end
18 18
19 19 def application do
20 - []
20 + [extra_applications: [:crypto]]
21 21 end
22 22
23 23 defp deps do
24 24 [
25 - {:earmark, "~> 1.0", only: :dev},
26 - {:ex_doc, "~> 0.18", only: :dev},
27 - {:credo, "~> 1.0", only: [:dev, :test]}
25 + {:earmark, "~> 1.4", only: :dev},
26 + {:ex_doc, "~> 0.23", only: :dev},
27 + {:credo, "~> 1.4", only: [:dev, :test]}
28 28 ]
29 29 end