Add :public_key to extra_applications #3

Closed
minibikini wants to merge 0 commits from gitlab-mr-iid-1 into master
Member

Fixes compilation warnings:

warning: :public_key.pem_decode/1 defined in application :public_key is used by the current application but the current application does not directly depend on :public_key. To fix this, you must do one of:

  1. If :public_key is part of Erlang/Elixir, you must include it under :extra_applications inside "def application" in your mix.exs

  2. If :public_key is a dependency, make sure it is listed under "def deps" in your mix.exs

  3. In case you don't want to add a requirement to :public_key, you may optionally skip this warning by adding [xref: [exclude: :public_key]] to your "def project" in mix.exs

Found at 3 locations:
  test/support/test_adapter.ex:11: HTTPSignatures.TestAdapter
  test/support/test_adapter.ex:17: HTTPSignatures.TestAdapter
  test/support/test_adapter.ex:21: HTTPSignatures.TestAdapter

warning: :public_key.pem_entry_decode/1 defined in application :public_key is used by the current application but the current application does not directly depend on :public_key. To fix this, you must do one of:

  1. If :public_key is part of Erlang/Elixir, you must include it under :extra_applications inside "def application" in your mix.exs

  2. If :public_key is a dependency, make sure it is listed under "def deps" in your mix.exs

  3. In case you don't want to add a requirement to :public_key, you may optionally skip this warning by adding [xref: [exclude: :public_key]] to your "def project" in mix.exs

Found at 3 locations:
  test/support/test_adapter.ex:15: HTTPSignatures.TestAdapter
  test/support/test_adapter.ex:18: HTTPSignatures.TestAdapter
  test/support/test_adapter.ex:23: HTTPSignatures.TestAdapter

warning: :public_key.sign/3 defined in application :public_key is used by the current application but the current application does not directly depend on :public_key. To fix this, you must do one of:

  1. If :public_key is part of Erlang/Elixir, you must include it under :extra_applications inside "def application" in your mix.exs

  2. If :public_key is a dependency, make sure it is listed under "def deps" in your mix.exs

  3. In case you don't want to add a requirement to :public_key, you may optionally skip this warning by adding [xref: [exclude: :public_key]] to your "def project" in mix.exs

  lib/http_signatures/http_signatures.ex:87: HTTPSignatures.sign/3

warning: :public_key.verify/4 defined in application :public_key is used by the current application but the current application does not directly depend on :public_key. To fix this, you must do one of:

  1. If :public_key is part of Erlang/Elixir, you must include it under :extra_applications inside "def application" in your mix.exs

  2. If :public_key is a dependency, make sure it is listed under "def deps" in your mix.exs

  3. In case you don't want to add a requirement to :public_key, you may optionally skip this warning by adding [xref: [exclude: :public_key]] to your "def project" in mix.exs

  lib/http_signatures/http_signatures.ex:37: HTTPSignatures.validate/3
Fixes compilation warnings: ``` warning: :public_key.pem_decode/1 defined in application :public_key is used by the current application but the current application does not directly depend on :public_key. To fix this, you must do one of: 1. If :public_key is part of Erlang/Elixir, you must include it under :extra_applications inside "def application" in your mix.exs 2. If :public_key is a dependency, make sure it is listed under "def deps" in your mix.exs 3. In case you don't want to add a requirement to :public_key, you may optionally skip this warning by adding [xref: [exclude: :public_key]] to your "def project" in mix.exs Found at 3 locations: test/support/test_adapter.ex:11: HTTPSignatures.TestAdapter test/support/test_adapter.ex:17: HTTPSignatures.TestAdapter test/support/test_adapter.ex:21: HTTPSignatures.TestAdapter warning: :public_key.pem_entry_decode/1 defined in application :public_key is used by the current application but the current application does not directly depend on :public_key. To fix this, you must do one of: 1. If :public_key is part of Erlang/Elixir, you must include it under :extra_applications inside "def application" in your mix.exs 2. If :public_key is a dependency, make sure it is listed under "def deps" in your mix.exs 3. In case you don't want to add a requirement to :public_key, you may optionally skip this warning by adding [xref: [exclude: :public_key]] to your "def project" in mix.exs Found at 3 locations: test/support/test_adapter.ex:15: HTTPSignatures.TestAdapter test/support/test_adapter.ex:18: HTTPSignatures.TestAdapter test/support/test_adapter.ex:23: HTTPSignatures.TestAdapter warning: :public_key.sign/3 defined in application :public_key is used by the current application but the current application does not directly depend on :public_key. To fix this, you must do one of: 1. If :public_key is part of Erlang/Elixir, you must include it under :extra_applications inside "def application" in your mix.exs 2. If :public_key is a dependency, make sure it is listed under "def deps" in your mix.exs 3. In case you don't want to add a requirement to :public_key, you may optionally skip this warning by adding [xref: [exclude: :public_key]] to your "def project" in mix.exs lib/http_signatures/http_signatures.ex:87: HTTPSignatures.sign/3 warning: :public_key.verify/4 defined in application :public_key is used by the current application but the current application does not directly depend on :public_key. To fix this, you must do one of: 1. If :public_key is part of Erlang/Elixir, you must include it under :extra_applications inside "def application" in your mix.exs 2. If :public_key is a dependency, make sure it is listed under "def deps" in your mix.exs 3. In case you don't want to add a requirement to :public_key, you may optionally skip this warning by adding [xref: [exclude: :public_key]] to your "def project" in mix.exs lib/http_signatures/http_signatures.ex:37: HTTPSignatures.validate/3 ```

Pull request closed

Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
pleroma-elixir-libraries/http_signatures!3
No description provided.