Current section
4 Versions
Jump to
Current section
4 Versions
Compare versions
2
files changed
+13
additions
-12
deletions
| @@ -4,10 +4,11 @@ | |
| 4 4 | <<"helper functions for using AWS rekognition - in elixir">>}. |
| 5 5 | {<<"elixir">>,<<"~> 1.7">>}. |
| 6 6 | {<<"files">>, |
| 7 | - [<<"lib">>,<<"lib/process_image.ex">>,<<"lib/image_label_parser.ex">>, |
| 8 | - <<"lib/utils">>,<<"lib/utils/config_utils.ex">>,<<"lib/application.ex">>, |
| 9 | - <<"lib/logger_image_response_parser.ex">>,<<"lib/itsfound_rekognition.ex">>, |
| 10 | - <<".formatter.exs">>,<<"mix.exs">>,<<"README.md">>]}. |
| 7 | + [<<"lib">>,<<"lib/itsfound_rekognition.ex">>,<<"lib/image_label_parser.ex">>, |
| 8 | + <<"lib/utils">>,<<"lib/utils/config_utils.ex">>, |
| 9 | + <<"lib/logger_image_response_parser.ex">>,<<"lib/application.ex">>, |
| 10 | + <<"lib/process_image.ex">>,<<".formatter.exs">>,<<"mix.exs">>, |
| 11 | + <<"README.md">>]}. |
| 11 12 | {<<"licenses">>,[<<"MIT">>]}. |
| 12 13 | {<<"links">>, |
| 13 14 | [{<<"GitHub">>,<<"https://github.com/LukeJ80/itsfound_rekognition">>}]}. |
| @@ -22,7 +23,7 @@ | |
| 22 23 | {<<"name">>,<<"ex_aws">>}, |
| 23 24 | {<<"optional">>,false}, |
| 24 25 | {<<"repository">>,<<"hexpm">>}, |
| 25 | - {<<"requirement">>,<<"~> 2.1">>}], |
| 26 | + {<<"requirement">>,<<"~> 2.2.9">>}], |
| 26 27 | [{<<"app">>,<<"ex_aws_s3">>}, |
| 27 28 | {<<"name">>,<<"ex_aws_s3">>}, |
| 28 29 | {<<"optional">>,false}, |
| @@ -32,12 +33,12 @@ | |
| 32 33 | {<<"name">>,<<"hackney">>}, |
| 33 34 | {<<"optional">>,false}, |
| 34 35 | {<<"repository">>,<<"hexpm">>}, |
| 35 | - {<<"requirement">>,<<"~> 1.15.2">>}], |
| 36 | + {<<"requirement">>,<<"~> 1.18.0">>}], |
| 36 37 | [{<<"app">>,<<"sweet_xml">>}, |
| 37 38 | {<<"name">>,<<"sweet_xml">>}, |
| 38 39 | {<<"optional">>,false}, |
| 39 40 | {<<"repository">>,<<"hexpm">>}, |
| 40 | - {<<"requirement">>,<<"~> 0.6">>}], |
| 41 | + {<<"requirement">>,<<"~> 0.7.2">>}], |
| 41 42 | [{<<"app">>,<<"poison">>}, |
| 42 43 | {<<"name">>,<<"poison">>}, |
| 43 44 | {<<"optional">>,false}, |
| @@ -48,4 +49,4 @@ | |
| 48 49 | {<<"optional">>,false}, |
| 49 50 | {<<"repository">>,<<"hexpm">>}, |
| 50 51 | {<<"requirement">>,<<"~> 3.3.1">>}]]}. |
| 51 | - {<<"version">>,<<"0.1.6">>}. |
| 52 | + {<<"version">>,<<"0.1.7">>}. |
| @@ -7,7 +7,7 @@ defmodule ItsfoundRekognition.MixProject do | |
| 7 7 | source_url: github_link(), |
| 8 8 | package: package(), |
| 9 9 | app: :itsfound_rekognition, |
| 10 | - version: "0.1.6", |
| 10 | + version: "0.1.7", |
| 11 11 | elixir: "~> 1.7", |
| 12 12 | start_permanent: Mix.env() == :prod, |
| 13 13 | deps: deps() |
| @@ -26,10 +26,10 @@ defmodule ItsfoundRekognition.MixProject do | |
| 26 26 | defp deps do |
| 27 27 | [ |
| 28 28 | {:ex_aws_rekognition, "~> 0.5.0"}, |
| 29 | - {:ex_aws, "~> 2.1"}, |
| 29 | + {:ex_aws, "~> 2.2.9"}, |
| 30 30 | {:ex_aws_s3, "~> 2.0"}, |
| 31 | - {:hackney, "~> 1.15.2"}, |
| 32 | - {:sweet_xml, "~> 0.6"}, |
| 31 | + {:hackney, "~> 1.18.0"}, |
| 32 | + {:sweet_xml, "~> 0.7.2"}, |
| 33 33 | {:poison, "~> 3.1"}, |
| 34 34 | {:confex, "~> 3.3.1"}, |
| 35 35 | {:ex_doc, ">= 0.0.0", only: :dev, runtime: false} |