Current section
37 Versions
Jump to
Current section
37 Versions
Compare versions
3
files changed
+23
additions
-24
deletions
| @@ -1,7 +1,7 @@ | |
| 1 1 | {<<"app">>,<<"saltpack">>}. |
| 2 2 | {<<"build_tools">>,[<<"mix">>]}. |
| 3 3 | {<<"description">>,<<"pure Elixir saltpack library implementation">>}. |
| 4 | - {<<"elixir">>,<<"~> 1.2">>}. |
| 4 | + {<<"elixir">>,<<"~> 1.3">>}. |
| 5 5 | {<<"files">>, |
| 6 6 | [<<"lib/saltpack.ex">>,<<"lib/saltpack/armor.ex">>, |
| 7 7 | <<"lib/saltpack/crypt.ex">>,<<"lib/saltpack/sign.ex">>,<<"mix.exs">>, |
| @@ -13,20 +13,20 @@ | |
| 13 13 | {<<"maintainers">>,[<<"Matt Miller">>]}. |
| 14 14 | {<<"name">>,<<"saltpack">>}. |
| 15 15 | {<<"requirements">>, |
| 16 | - [{<<"basex">>, |
| 17 | - [{<<"app">>,<<"basex">>}, |
| 18 | - {<<"optional">>,false}, |
| 19 | - {<<"requirement">>,<<"~> 0.2">>}]}, |
| 20 | - {<<"equivalex">>, |
| 21 | - [{<<"app">>,<<"equivalex">>}, |
| 22 | - {<<"optional">>,false}, |
| 23 | - {<<"requirement">>,<<"~> 0.1">>}]}, |
| 24 | - {<<"kcl">>, |
| 25 | - [{<<"app">>,<<"kcl">>}, |
| 26 | - {<<"optional">>,false}, |
| 27 | - {<<"requirement">>,<<"~> 0.6">>}]}, |
| 28 | - {<<"msgpax">>, |
| 29 | - [{<<"app">>,<<"msgpax">>}, |
| 30 | - {<<"optional">>,false}, |
| 31 | - {<<"requirement">>,<<"~> 0.8">>}]}]}. |
| 32 | - {<<"version">>,<<"1.0.1">>}. |
| 16 | + [[{<<"app">>,<<"basex">>}, |
| 17 | + {<<"name">>,<<"basex">>}, |
| 18 | + {<<"optional">>,false}, |
| 19 | + {<<"requirement">>,<<"~> 0.2">>}], |
| 20 | + [{<<"app">>,<<"equivalex">>}, |
| 21 | + {<<"name">>,<<"equivalex">>}, |
| 22 | + {<<"optional">>,false}, |
| 23 | + {<<"requirement">>,<<"~> 0.1">>}], |
| 24 | + [{<<"app">>,<<"kcl">>}, |
| 25 | + {<<"name">>,<<"kcl">>}, |
| 26 | + {<<"optional">>,false}, |
| 27 | + {<<"requirement">>,<<"~> 0.6">>}], |
| 28 | + [{<<"app">>,<<"msgpax">>}, |
| 29 | + {<<"name">>,<<"msgpax">>}, |
| 30 | + {<<"optional">>,false}, |
| 31 | + {<<"requirement">>,<<"~> 0.8">>}]]}. |
| 32 | + {<<"version">>,<<"1.0.3">>}. |
| @@ -10,7 +10,7 @@ defmodule Saltpack do | |
| 10 10 | @typedoc """ |
| 11 11 | a public or private key |
| 12 12 | """ |
| 13 | - @type key :: <<_ :: 32 * 8>> |
| 13 | + @type key :: binary |
| 14 14 | |
| 15 15 | @typedoc """ |
| 16 16 | desired key variety |
| @@ -3,8 +3,8 @@ defmodule Saltpack.Mixfile do | |
| 3 3 | |
| 4 4 | def project do |
| 5 5 | [app: :saltpack, |
| 6 | - version: "1.0.1", |
| 7 | - elixir: "~> 1.2", |
| 6 | + version: "1.0.3", |
| 7 | + elixir: "~> 1.3", |
| 8 8 | name: "saltpack", |
| 9 9 | source_url: "https://github.com/mwmiller/saltpack_ex", |
| 10 10 | build_embedded: Mix.env == :prod, |
| @@ -24,9 +24,8 @@ defmodule Saltpack.Mixfile do | |
| 24 24 | {:equivalex, "~> 0.1"}, |
| 25 25 | {:kcl, "~> 0.6"}, |
| 26 26 | {:msgpax, "~> 0.8"}, |
| 27 | - {:power_assert, "~> 0.0.8", only: :test}, |
| 28 | - {:earmark, ">= 0.0.0", only: :dev}, |
| 29 | - {:ex_doc, "~> 0.11.4", only: :dev}, |
| 27 | + {:earmark, "~> 1.0", only: :dev}, |
| 28 | + {:ex_doc, "~> 0.13", only: :dev}, |
| 30 29 | ] |
| 31 30 | end |