Packages

helper functions for using AWS rekognition - in elixir

Current section

4 Versions

Jump to

Compare versions

2 files changed
+51 additions
-52 deletions
  @@ -1,52 +1,51 @@
1 - {<<"app">>,<<"itsfound_rekognition">>}.
2 - {<<"build_tools">>,[<<"mix">>]}.
3 - {<<"description">>,
4 - <<"helper functions for using AWS rekognition - in elixir">>}.
5 - {<<"elixir">>,<<"~> 1.7">>}.
6 - {<<"files">>,
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">>]}.
12 - {<<"licenses">>,[<<"MIT">>]}.
13 1 {<<"links">>,
14 2 [{<<"GitHub">>,<<"https://github.com/LukeJ80/itsfound_rekognition">>}]}.
15 3 {<<"name">>,<<"itsfound_rekognition">>}.
4 + {<<"version">>,<<"0.1.8">>}.
5 + {<<"description">>,
6 + <<"helper functions for using AWS rekognition - in elixir">>}.
7 + {<<"elixir">>,<<"~> 1.18.4">>}.
8 + {<<"app">>,<<"itsfound_rekognition">>}.
9 + {<<"licenses">>,[<<"MIT">>]}.
16 10 {<<"requirements">>,
17 - [[{<<"app">>,<<"ex_aws_rekognition">>},
18 - {<<"name">>,<<"ex_aws_rekognition">>},
11 + [[{<<"name">>,<<"ex_aws_rekognition">>},
12 + {<<"app">>,<<"ex_aws_rekognition">>},
19 13 {<<"optional">>,false},
20 - {<<"repository">>,<<"hexpm">>},
21 - {<<"requirement">>,<<"~> 0.5.0">>}],
22 - [{<<"app">>,<<"ex_aws">>},
23 - {<<"name">>,<<"ex_aws">>},
14 + {<<"requirement">>,<<"~> 0.6.0">>},
15 + {<<"repository">>,<<"hexpm">>}],
16 + [{<<"name">>,<<"ex_aws">>},
17 + {<<"app">>,<<"ex_aws">>},
24 18 {<<"optional">>,false},
25 - {<<"repository">>,<<"hexpm">>},
26 - {<<"requirement">>,<<"~> 2.2.9">>}],
27 - [{<<"app">>,<<"ex_aws_s3">>},
28 - {<<"name">>,<<"ex_aws_s3">>},
19 + {<<"requirement">>,<<"~> 2.6.0">>},
20 + {<<"repository">>,<<"hexpm">>}],
21 + [{<<"name">>,<<"ex_aws_s3">>},
22 + {<<"app">>,<<"ex_aws_s3">>},
29 23 {<<"optional">>,false},
30 - {<<"repository">>,<<"hexpm">>},
31 - {<<"requirement">>,<<"~> 2.0">>}],
32 - [{<<"app">>,<<"hackney">>},
33 - {<<"name">>,<<"hackney">>},
24 + {<<"requirement">>,<<"~> 2.5.8">>},
25 + {<<"repository">>,<<"hexpm">>}],
26 + [{<<"name">>,<<"hackney">>},
27 + {<<"app">>,<<"hackney">>},
34 28 {<<"optional">>,false},
35 - {<<"repository">>,<<"hexpm">>},
36 - {<<"requirement">>,<<"~> 1.18.0">>}],
37 - [{<<"app">>,<<"sweet_xml">>},
38 - {<<"name">>,<<"sweet_xml">>},
29 + {<<"requirement">>,<<"~> 1.25.0">>},
30 + {<<"repository">>,<<"hexpm">>}],
31 + [{<<"name">>,<<"sweet_xml">>},
32 + {<<"app">>,<<"sweet_xml">>},
39 33 {<<"optional">>,false},
40 - {<<"repository">>,<<"hexpm">>},
41 - {<<"requirement">>,<<"~> 0.7.2">>}],
42 - [{<<"app">>,<<"poison">>},
43 - {<<"name">>,<<"poison">>},
34 + {<<"requirement">>,<<"~> 0.7.5">>},
35 + {<<"repository">>,<<"hexpm">>}],
36 + [{<<"name">>,<<"poison">>},
37 + {<<"app">>,<<"poison">>},
44 38 {<<"optional">>,false},
45 - {<<"repository">>,<<"hexpm">>},
46 - {<<"requirement">>,<<"~> 3.1">>}],
47 - [{<<"app">>,<<"confex">>},
48 - {<<"name">>,<<"confex">>},
39 + {<<"requirement">>,<<"~> 6.0">>},
40 + {<<"repository">>,<<"hexpm">>}],
41 + [{<<"name">>,<<"confex">>},
42 + {<<"app">>,<<"confex">>},
49 43 {<<"optional">>,false},
50 - {<<"repository">>,<<"hexpm">>},
51 - {<<"requirement">>,<<"~> 3.3.1">>}]]}.
52 - {<<"version">>,<<"0.1.7">>}.
44 + {<<"requirement">>,<<"~> 3.5.1">>},
45 + {<<"repository">>,<<"hexpm">>}]]}.
46 + {<<"files">>,
47 + [<<"lib">>,<<"lib/process_image.ex">>,<<"lib/itsfound_rekognition.ex">>,
48 + <<"lib/application.ex">>,<<"lib/utils">>,<<"lib/utils/config_utils.ex">>,
49 + <<"lib/logger_image_response_parser.ex">>,<<"lib/image_label_parser.ex">>,
50 + <<".formatter.exs">>,<<"mix.exs">>,<<"README.md">>]}.
51 + {<<"build_tools">>,[<<"mix">>]}.
  @@ -5,10 +5,10 @@ defmodule ItsfoundRekognition.MixProject do
5 5 [
6 6 description: "helper functions for using AWS rekognition - in elixir",
7 7 source_url: github_link(),
8 - package: package(),
8 + package: package(),
9 9 app: :itsfound_rekognition,
10 - version: "0.1.7",
11 - elixir: "~> 1.7",
10 + version: "0.1.8",
11 + elixir: "~> 1.18.4",
12 12 start_permanent: Mix.env() == :prod,
13 13 deps: deps()
14 14 ]
  @@ -25,13 +25,13 @@ defmodule ItsfoundRekognition.MixProject do
25 25 # Run "mix help deps" to learn about dependencies.
26 26 defp deps do
27 27 [
28 - {:ex_aws_rekognition, "~> 0.5.0"},
29 - {:ex_aws, "~> 2.2.9"},
30 - {:ex_aws_s3, "~> 2.0"},
31 - {:hackney, "~> 1.18.0"},
32 - {:sweet_xml, "~> 0.7.2"},
33 - {:poison, "~> 3.1"},
34 - {:confex, "~> 3.3.1"},
28 + {:ex_aws_rekognition, "~> 0.6.0"},
29 + {:ex_aws, "~> 2.6.0"},
30 + {:ex_aws_s3, "~> 2.5.8"},
31 + {:hackney, "~> 1.25.0"},
32 + {:sweet_xml, "~> 0.7.5"},
33 + {:poison, "~> 6.0"},
34 + {:confex, "~> 3.5.1"},
35 35 {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
36 36 ]
37 37 end
  @@ -46,5 +46,5 @@ defmodule ItsfoundRekognition.MixProject do
46 46
47 47 defp github_link() do
48 48 "https://github.com/LukeJ80/itsfound_rekognition"
49 - end
49 + end
50 50 end