Skip to content

Commit 859a6f6

Browse files
committed
Make implicit dependency on unicode_util_compat explicit
Explicit is better than implicit and actually of consequence in this situation, since the depth of dependency declarations matters for rebar3 to decide which particular one it will choose to import - when there's more than one.
1 parent 0539961 commit 859a6f6

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

rebar.config

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
{certifi, "2.5.2"},
2727
{metrics, "1.0.1"},
2828
{parse_trans, "3.3.0"},
29-
{ssl_verify_fun, "1.1.6"}
29+
{ssl_verify_fun, "1.1.6"},
30+
{unicode_util_compat, "0.5.0"}
3031
]}.
3132

3233
{profiles, [{docs, [{deps,

rebar.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{<<"mimerl">>,{pkg,<<"mimerl">>,<<"1.2.0">>},0},
66
{<<"parse_trans">>,{pkg,<<"parse_trans">>,<<"3.3.0">>},0},
77
{<<"ssl_verify_fun">>,{pkg,<<"ssl_verify_fun">>,<<"1.1.6">>},0},
8-
{<<"unicode_util_compat">>,{pkg,<<"unicode_util_compat">>,<<"0.5.0">>},1}]}.
8+
{<<"unicode_util_compat">>,{pkg,<<"unicode_util_compat">>,<<"0.5.0">>},0}]}.
99
[
1010
{pkg_hash,[
1111
{<<"certifi">>, <<"B7CFEAE9D2ED395695DD8201C57A2D019C0C43ECAF8B8BCB9320B40D6662F340">>},

src/hackney.app.src

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
certifi,
1818
parse_trans,
1919
ssl_verify_fun,
20-
metrics]},
20+
metrics,
21+
unicode_util_compat]},
2122
{included_applications, []},
2223
{mod, { hackney_app, []}},
2324
{env, [{timeout, 150000},

0 commit comments

Comments
 (0)