Skip to content

Commit

Permalink
Merge pull request #44 from dwyl/dependabot/hex/b58-1.0.3
Browse files Browse the repository at this point in the history
Bump b58 from 0.1.1 to 1.0.3
  • Loading branch information
nelsonic committed Aug 23, 2023
2 parents e87acdc + 7c3e41b commit d360dc7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/cid.ex
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ defmodule Cid do
# Takes a binary, a base and return the encoded binary in the base.
defp encode_with_base(binary, base) do
case base do
:base58 -> {:ok, Base58Encode.encode(binary)}
:base58 -> {:ok, Base58.encode(binary)}

:base32 -> {:ok, Base.encode32(binary, case: :lower, padding: false)}

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ defmodule Cid.MixProject do
[
{:ex_multihash, "~> 2.0"},
{:jason, "~> 1.1"},
{:b58, "~> 0.1.1"},
{:b58, "~> 1.0.3"},
{:excoveralls, "~> 0.10", only: :test},
{:stream_data, "~> 0.6.0", only: :test},
{:ex_doc, "~> 0.30.3", only: :dev}
Expand Down
2 changes: 1 addition & 1 deletion mix.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
%{
"b58": {:hex, :b58, "0.1.1", "950563b90ad95be214143aa807d16c98d2ac7bab915097cb1461c936128c6b90", [:mix], [], "hexpm", "73336019a6a9512cd53f01fcef69d1c71428b546eb66bbd062f4fcc11b23cd9d"},
"b58": {:hex, :b58, "1.0.3", "d300d6ae5a3de956a54b9e8220e924e4fee1a349de983df2340fe61e0e464202", [:mix], [], "hexpm", "af62a98a8661fd89978cf3a3a4b5b2ebe82209de6ac6164f0b112e36af72fc59"},
"earmark": {:hex, :earmark, "1.4.39", "acdb2f02c536471029dbcc509fbd6b94b89f40ad7729fb3f68f4b6944843f01d", [:mix], [{:earmark_parser, "~> 1.4.33", [hex: :earmark_parser, repo: "hexpm", optional: false]}], "hexpm", "156c9d8ec3cbeccdbf26216d8247bdeeacc8c76b4d9eee7554be2f1b623ea440"},
"earmark_parser": {:hex, :earmark_parser, "1.4.33", "3c3fd9673bb5dcc9edc28dd90f50c87ce506d1f71b70e3de69aa8154bc695d44", [:mix], [], "hexpm", "2d526833729b59b9fdb85785078697c72ac5e5066350663e5be6a1182da61b8f"},
"ex_doc": {:hex, :ex_doc, "0.30.5", "aa6da96a5c23389d7dc7c381eba862710e108cee9cfdc629b7ec021313900e9e", [:mix], [{:earmark_parser, "~> 1.4.31", [hex: :earmark_parser, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.14", [hex: :makeup_elixir, repo: "hexpm", optional: false]}, {:makeup_erlang, "~> 0.1", [hex: :makeup_erlang, repo: "hexpm", optional: false]}], "hexpm", "88a1e115dcb91cefeef7e22df4a6ebbe4634fbf98b38adcbc25c9607d6d9d8e6"},
Expand Down

0 comments on commit d360dc7

Please sign in to comment.