diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-09-17 17:48:51 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-09-17 17:48:51 -0500 |
commit | 23057098a6eac6282c4b42ba554d8fd58108de49 (patch) | |
tree | a693aed10faf0f6aabde2e2e3a861aad98d58fa7 | |
parent | 07dd54d7fd1a52181925efcc6b4ffc3b94a7127b (diff) |
fix dict type for before 17
-rw-r--r-- | src/rebar_prv_install_deps.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_install_deps.erl b/src/rebar_prv_install_deps.erl index 75bcf0c..87db8b0 100644 --- a/src/rebar_prv_install_deps.erl +++ b/src/rebar_prv_install_deps.erl @@ -149,7 +149,7 @@ handle_deps(State, Deps) -> is_valid(App) -> rebar_app_info:valid(App). --spec package_to_app(file:name(), dict:dict(), binary(), binary()) -> rebar_app_info:t(). +-spec package_to_app(file:name(), rlx_depsolver:t(), binary(), binary()) -> rebar_app_info:t(). package_to_app(DepsDir, Packages, Name, Vsn) -> FmtVsn = ec_cnv:to_binary(rlx_depsolver:format_version(Vsn)), |